Dear devbest,
I need help. I'm using Habsys 2's system. All okay just I want it to be like. Anyone help?
But when i integrate these codes
It become like this:
Thank you
I need help. I'm using Habsys 2's system. All okay just I want it to be like. Anyone help?
But when i integrate these codes
PHP:
<!-- News Headlines -->
<div class="newscont">
<div id="newscont">
<div class="news_text">
<?php
$latest10 = mysql_query("SELECT * FROM news ORDER BY `id` DESC LIMIT 10");
if(mysql_num_rows($latest10) == 0){
echo 'There are no news topics!';
}else{
while($l10 = mysql_fetch_array($latest10)){
$id = $l10["id"];
$title = $l10["title"];
$comments = $l10["comments"];
$author = $l10["author"];
$username = userRow($author, 'username');
echo '<a href="article.php?id='.$id.'" title="Author: '.$username.' | Comments: '.$comments.'">'.$title.'</a><br>';
}
}
?>
</div>
<div id="post_date"></div>
</div>
</div>
It become like this:
Thank you