can you help
Code:
$category_id="1";$nr_news="3";
global $prefix, $db;
if (eregi("block-Multiheadlines-Top.php", $_SERVER['PHP_SELF'])) {
Header("Location: index.php");
die();
}
$content = "<table width=\"100%\">
<tr>
<td>";
$result = $db->sql_query("SELECT * FROM ".$prefix."_multiheadlines_news WHERE news_cat='$category_id' ORDER BY news_time DESC LIMIT 0,".$nr_news);
while ($row = $db->sql_fetchrow($result)) {
$image = $db->sql_fetchrow($db->sql_query("SELECT * FROM ".$prefix."_multiheadlines_urls WHERE urls_site='".$row["news_site"]."'"));
$content .="
<img src=\"themes/otbi/images/line.gif\" border=\"0\" height=\"1\" width=\"90%\"></br></br><div align=\"left\">
<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
<tr>
<td>
<img src=\"modules/Multiheadlines/images/logos/".$image["urls_image"]."\" border=\"0\" width=\"90\" height=\"30\" hspace=\"10\"></a>
</td>
<td>
<a href=\"".$row["news_link"]."\" xtarget=\"_blank\"><b>".$row["news_title"]."</b></a> </td>
</tr>
</table>
</br>".$row["news_description"]."</br></br></div>";
}
$content .="</td>
</tr>
</table>";











