accept:
reject: "; } echo "
\n"; $result = mysql_query("select * from profile, user where profile.userid=user.id and (uotd_time is null) and (has_picture>0) and (verification=0) and (user.total_credit>0) order by recommend desc limit 20"); $n = 0; page_head("screen profiles"); start_table(); while ($profile = mysql_fetch_object($result)) { echo " "; buttons($n); echo " "; echo "recommends: $profile->recommend
rejects: $profile->reject
"; show_profile($profile->userid, true); echo "\n"; echo "userid>\n"; $n++; } end_table(); echo "
"; page_tail(); ?>