help anime!! I have this in my index.php for my welcome panel
Code:
if ($bbuserinfo[userid]!=0) {
$avatarurl = $post['field6'];
if ($avatarurl=='') {
$avatarurl='images/noavatar.gif';
}
$avatarimage='<img src="'.$avatarurl.'" align="left">';
} else {
$avatarimage='<a href="register.php?s='.$session[sessionhash].'&action=signup"><img src="images/guestavatar.gif" border="0"></a>';
}
But it always shows no avatar selected (unless your not registerd).
This is the code Im using now for the avatar thingie.
Code:
if ($post[field6]) {
$aAvatar="<img src=\"$post[field6]\" border=\"0\"><P>";
} else {
$aAvatar="<img src=\"{imagesfolder}/clear.gif\" border=\"0\"><P>";
}
Can you help? Welcome to my board, btw ^_^