hi im trying to add this code to my online list to display users avatars but..im not really sure where i should place it
i want this to replace the male.gif and female.gif icons thanks
PHP Code:
$avlink = getavatar($item[2]);
if ($avlink!=""){
echo "<img src=\"$avlink\" height=\"25\" width=\"25\" alt=\"avatar\"/>
";
}else{
echo "<img src=\"images/nopic.jpg\" height=\"25\" width=\"25\" alt=\"avatar\"/>
";
}
Comment