Anyone have code in user online with avatar in index, with 10 limit? Thanks, ,
Online user with avatar,
Collapse
X
-
Originally posted by KiLLeR_mAcHInE View PostDont cal me sir. By the way i have dis code. But i rarely come with pc. Ask subzero bro if he has it . Coz he has many many scripts :-)
Comment
-
Sorry bro, heres the code, thread of sir rider,
for forums
for 1st Post !
index.php action="viewtpc".
(after
Code:$unick = getnick_uid($ttext[0]);
add this
Code:$uid =$ttext[0]; $avatar = getavatar($uid); if ($avatar=="") { echo"<img src=\"images/nopic.jpg\" width=\"32\" height=\"32\" alt=\"avatar\"/>"; }else{ echo"<img src=\"$avatar\" width=\"32\" height=\"32\" alt=\"avatar\"/>"; }
find and add after
Code:$unick = getnick_uid($post[2]);
Code:$uid =$post[2]; $avatar = getavatar($uid); if ($avatar=="") { echo"<img src=\"images/nopic.jpg\" width=\"32\" height=\"32\" alt=\"avatar\"/>"; }else{ echo"<img src=\"$avatar\" width=\"32\" height=\"32\" alt=\"avatar\"/>";
Comment
Comment