View Single Post
  #10  
Old 26th June 2011, 14:19
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
I updated the post try it now
PHP Code:
<?php
//USERS ONLINE
OpenTable("Newest Members");
echo 
"<p>\n";
global 
$db_prefix;
$file "cache/cache_newestmemberblock.txt";
$expire 60// time in seconds
if (file_exists($file) &&
    
filemtime($file) > (time() - $expire)) {
    
$newestmemberrecords unserialize(file_get_contents($file));
}else{ 
    
$newestmemberquery $db->sql_query("SELECT U.id as id,
                                         avatar as avatar,
                                         IF(U.name IS NULL,U.username, U.name) as name,
                                         U.donator as donator,
                                         U.warned as warned,
                                         U.can_do as can_do,
                                         U.level as level,
                                         L.color as color
            FROM "
.$db_prefix."_users U , ".$db_prefix."_levels L 
            WHERE U.active = 1
            AND U.ban = 0 
            AND L.level = U.can_do
            ORDER BY id DESC LIMIT 5"
) or die(mysql_error());
    
    while (
$newestmemberrecord $db->sql_fetchrow($newestmemberquery) ) {
        
$newestmemberrecords[] = $newestmemberrecord;
    }
    
$OUTPUT serialize($newestmemberrecords);
    
$fp fopen($file,"w");
    
fputs($fp$OUTPUT);
    
fclose($fp);
// end else 
if ($newestmemberrecords == ""){
    echo 
"No new members";
}else{
echo 
"<table width=\"100%\" class=\"torrenttable\" border=\"0\" cellpadding=\"3\" ><tr>";
    foreach (
$newestmemberrecords as $id=>$row) { 
        echo 
"<td padding=\"0\">\n<center>";
                        if (
$row["avatar"] != "blank.gif") echo "<img height=\"50px\" src=\"avatars/".$row["avatar"]."\" alt=\"".str_replace("**user**",$row["name"],_btalt_avatar)."\" border=\"0\">";
                        else echo 
pic("noavatar.png");
       echo 
"<br />";
        echo 
"<a href='user.php?op=profile&id=".$row['id']."'><font color=\"".$row["color"]."\">".htmlspecialchars($row["name"])."</font></a>\n</center></td>\n";

    }
echo 
"</tr></table>\n";
}
CloseTable();
?>
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/

Last edited by joeroberts; 26th June 2011 at 15:15.
Reply With Quote