News:

Please note these forums are mostly a testing ground for my SMF work and I don't really use them otherwise.

Main Menu

Paste-1188593442:v:use_geshi-1:v:type-php

Started by Itch, Aug 31, 2007, 08:50 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Itch

global $db_prefix, $scripturl;

$articles = db_query("
        SELECT subject, id, views FROM {$db_prefix}tp_articles WHERE 1 ORDER BY views DESC LIMIT 20", __FILE__, __LINE__);

echo '<div class="smalltext">';

if (mysql_fetch_assoc($articles) == 0)
        echo ' No Articles Submitted';
else
{
        while ($row = mysql_fetch_assoc($articles))
                echo '
         Â·
<a href="', $scripturl ,'?page=', $row['id'], '">', $row['subject'], '</a>
(', $row['views'], ' views';


}

echo '

</div>';

mysql_free_result($articles);