Posted by topusers Thu 1st Mar 2007 05:04 - Syntax is PHP - 171 viewsRun this post in the PHP shell
Download | New Post | Modify | Show line numbers
PHP parser reported no syntax errors in this post!

// The source code packaged with this file is Free Software, Copyright (C) 2005 by
// Ricardo Galli .
// It's licensed under the AFFERO GENERAL PUBLIC LICENSE unless stated otherwise.
// You can get copies of the licenses here:
//         http://www.affero.org/oagpl.html
// AFFERO GENERAL PUBLIC LICENSE is also included in the file called "COPYING".
// -------------------------------------------------------------------------------------

include_once('Smarty.class.php');
if(!isset($main_smarty)){$main_smarty = new Smarty;}
// If we're calling this page through another page like index.php, $main_smarty will already be set
// If we're calling this page directly, set main_smarty

include_once('config.php');
include_once(mnminclude.'html1.php');
include_once(mnminclude.'link.php');
include_once(mnminclude.'tags.php');
include_once(mnminclude.'search.php');
include_once(mnminclude.'smartyvariables.php');


echo "
\"new Effect.toggle('topusers','blind', {queue: 'end'}); \"\"".my_base_url.my_pligg_base."/templates/yget/images/expand.png\" onClick=expandcontent(this,'topusers') >Top Users
";

    $res = "select user_login,user_id,link_author,link_status,count(link_id) as links from ".table_users.",".table_links." WHERE user_id = link_author AND link_status = 'published' ORDER BY links DESC GROUP BY user_id limit 10";
   
    $list_users = mysql_query($res) or die(mysql_error());

        while($row = mysql_fetch_array($list_users)){       
           
            $user_url = getmyurl("user", $row['user_login']);
                                       
            echo "".$row['user_login']."
"
;
        }

    echo "
"
;
   
?>
 

PermaLink to this entry https://pastebin.co.uk/11196
Posted by topusers Thu 1st Mar 2007 05:04 - Syntax is PHP - 171 viewsRun this post in the PHP shell
Download | New Post | Modify | Show line numbers

 

Comments: 0