View file m/ads-head.php

File size: 426B
<?
include ('system/connect.php');




$rekl = mysql_query("SELECT * FROM `".$prefix."rekl` ORDER BY `position` ASC");

if(mysql_num_rows($rekl) > 0)
{
echo '<div class="rek row xs">';
while($row = mysql_fetch_assoc($rekl))
{
echo '<img src="/img/index/icon.png" alt="*" /> <a href="http://'.$row['link'].'"><strong><font color=#'.$row['color'].'>'.$row['name'].'</font></strong></a></br>';
}	
echo '</div>';					
}
		
?>