Файл: public_html/statlinks.php
Строк: 14
<?
    require('config.php');
    include('remsl.php');
    ?><div id="ahref"><?
    
    if($leftblock=='0')
    {
        $sql="select * from tb_statlinks where leftblock='0' order by id asc";
    }else{
        $sql="select * from tb_statlinks where leftblock='1' order by id asc";
    }
    $res=mysql_query($sql);
    
    $i=0;
    
    while ($row=mysql_fetch_assoc($res))
    {
        $urllink=$row["url"];
        $description=$row["description"];
    
        $i=$i+1;
        
        echo "<font color="black"><b>";
        echo $i;
        echo ". </b></font>";
        ?>
        <a href="<? echo $urllink; ?>" target="_blank"><? echo $description; ?></a><br>
        <?
    }
    ?></div><?
    mysql_close($con);
?>