| Code: : |
| ."<tr><td bgcolor='$bgcolor2'><b>"._YOURAVATAR.":</b><br>"._OPTIONAL."</td><td bgcolor='$bgcolor3'>[ <a href=\"modules.php?name=$module_name&op=avatarlist\">"._LIST."</a> ] " ."<select name=\"user_avatar\" onChange=\"showimage()\">" ."<option value=\"$userinfo[user_avatar]\">$userinfo[user_avatar]</option>"; $direktori = "modules/Forums/images/avatars/gallery"; $handle=opendir($direktori); while ($file = readdir($handle)) { $filelist[] = $file; } asort($filelist); while (list ($key, $file) = each ($filelist)) { ereg(".gif|.jpg",$file); if ($file == "." || $file == "..") { $a=1; } else { echo "<option value=\"$file\">$file</option>"; } } echo "</select> <img src=\"modules/Forums/images/avatars/gallery/$userinfo[user_avatar]\" name=\"avatar\" width=\"32\" height=\"32\" alt=\"\"></td></tr>" |