2004-12-20 18:29:15 +00:00
< ? php
require_once ( " ../inc/profile.inc " );
db_init ();
function buttons ( $i ) {
echo "
2004-12-27 22:52:55 +00:00
< input type = radio name = user $i value = 0 checked = checked > skip < br >
< input type = radio name = user $i value = 1 > accept < br >
< input type = radio name = user $i value =- 1 > reject
2004-12-20 18:29:15 +00:00
" ;
}
2004-12-27 22:52:55 +00:00
page_head ( " screen profiles " );
2004-12-20 18:29:15 +00:00
$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 ;
2004-12-27 22:52:55 +00:00
echo " <form method=get action=profile_screen_action.php> \n " ;
2004-12-20 18:29:15 +00:00
start_table ();
2004-12-27 22:52:55 +00:00
$found = false ;
2004-12-20 18:29:15 +00:00
while ( $profile = mysql_fetch_object ( $result )) {
2004-12-27 22:52:55 +00:00
$found = true ;
2004-12-20 18:29:15 +00:00
echo " <tr><td>
" ;
buttons ( $n );
echo "
</ td >< td >
" ;
echo " recommends: $profile->recommend
< br > rejects : $profile -> reject
< br >
" ;
show_profile ( $profile -> userid , true );
echo " </td></tr> \n " ;
echo " <input type=hidden name=userid $n value= $profile->userid > \n " ;
$n ++ ;
}
end_table ();
2004-12-27 22:52:55 +00:00
if ( $found ) {
echo "
< input type = hidden name = n value = $n >
< input type = submit value = OK >
" ;
} else {
echo " No more profiles to screen. " ;
}
2004-12-20 18:29:15 +00:00
echo "
</ form >
" ;
2004-12-27 22:52:55 +00:00
2004-12-20 18:29:15 +00:00
page_tail ();
?>