Hey guys, I need help with online list I'm trying to get the user avatar to show on online list bt I can't get the code to work, I try searching forum and other scripts bt still no result ..
This is the coding I was trying to use
This is the code. sorry abt tht
This is the coding I was trying to use
PHP Code:
$avlink = getavatar($item[3]);
if ($avlink=="")
{
$sex = mysql_fetch_array(mysql_query("SELECT sex FROM ibwf_users WHERE id='$item[3]'"));
if($sex[0]=='M')
{
echo "<br/><img src=\"images/nophotoboy.gif\" alt=\"avatar\"/><br/>";
}else if($sex[0]=='F')
{
echo "<br/><img src=\"images/nophotogirl.gif\" alt=\"avatar\"/><br/>";
}else{
echo "<br/><img src=\"images/nopic.jpg\" alt=\"avatar\"/><br/>";
}
}else{
echo "<br/><img src=\"$avlink\" alt=\"avatar\"/><br/><br/>";
}
Comment