skip
accept
reject "; } admin_page_head("screen profiles"); $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; echo "
\n"; start_table(); $found = false; while ($profile = mysql_fetch_object($result)) { $found = true; echo " "; buttons($n); echo " "; echo "recommends: $profile->recommend
rejects: $profile->reject
"; show_profile($profile->userid, true); echo "\n"; echo "userid\">\n"; $n++; } end_table(); if ($found) { echo " "; } else { echo "No more profiles to screen."; } echo "
"; admin_page_tail(); ?>