I need this block for PHP-Nuke 6.5, but I only obtained for 5.x...
Somebody can help me?
Code:
<?php
/********************************************************/
/* block-User_Points.php vs. 1.0 */
/* Written by: complex-berlin.de */
/* http://www.complex-berlin.de */
/* */
/* This program is opensource, so you can do whatever */
/* you want with it. */
/********************************************************/
if (eregi("block-User_Points.php",$PHP_SELF)) {
Header("Location: index.php");
die();
}
{
global $cat, $multilingual, $prefix, $dbi;
$result = sql_query("select * from $prefix"._userpoints." order by punkte desc limit
0,10", $dbi);
$numrows = sql_num_rows($result, $dbi);
if ($numrows == 0) {
return;
} else {
$content .= "<table>";
$i=1;
while(list($userid, $punkte) = sql_fetch_row($result, $dbi)) {
$result2=sql_query("select uname from $prefix"._users." where
uid='$userid'", $dbi);
$userd=sql_fetch_array($result2, $dbi);
$name = $userd["uname"];
if(($name!="Anonymous") AND ($name!="Anonymous")) $content.= "<tr><td><small>$i-<a
href=modules.php?name=Your_Account&op=userinfo&uname=$name>$name</td><td align=\"right\"><small> $punkte</td></tr>";
if(($name!="Anonymous") AND ($name!="Anonymous")) $i++;
}
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum