View Single Post
ישן 23-07-07, 16:35   # 6
Elad-A
הוסטסניון
 
מיני פרופיל
תאריך הצטרפות: May 2006
הודעות: 1,987

Elad-A לא מחובר  

PHP קוד:
function links() 
{
    global 
$seo_on;
    include (
'config.php');
    
$sql mysql_query("SELECT * FROM ava_links WHERE sitewide=1 AND published=1 ORDER BY id desc LIMIT 10");
    
    while(
$row mysql_fetch_array($sql))
    {
        echo 
'&nbsp;<a href="'.$row['url'].'" target="_blank">'.$row['name'].'</a><br>';
    }

    if (
$seo_on == 0
    {
        echo 
'&nbsp;<a href="'.$site_url.'/index.php?task=links">More links...</a>';
    }
    else 
    {
        echo 
'&nbsp;<a href="'.$site_url.'/task/links/">More links...</a>';
    }

  Reply With Quote