2004-12-20 18:29:15 +00:00
|
|
|
<?php
|
2005-02-08 04:38:31 +00:00
|
|
|
$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit
|
2004-12-20 18:29:15 +00:00
|
|
|
|
|
|
|
require_once("../inc/db_ops.inc");
|
|
|
|
require_once("../inc/util_ops.inc");
|
|
|
|
|
|
|
|
$n = $_GET["n"];
|
|
|
|
|
|
|
|
db_init();
|
|
|
|
|
2005-02-08 04:38:31 +00:00
|
|
|
admin_page_head("screen profile action");
|
2004-12-20 18:29:15 +00:00
|
|
|
for ($i=0; $i<$n; $i++) {
|
|
|
|
$y = "user".$i;
|
|
|
|
$val = $_GET[$y];
|
|
|
|
$x = "userid".$i;
|
|
|
|
$userid = $_GET[$x];
|
|
|
|
switch ($val) {
|
|
|
|
case 1:
|
|
|
|
mysql_query("update profile set verification=1 where userid=$userid");
|
|
|
|
echo "<br>$userid is accepted";
|
|
|
|
break;
|
|
|
|
case -1:
|
|
|
|
mysql_query("update profile set verification=-1 where userid=$userid");
|
|
|
|
echo "<br>$userid is rejected";
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
echo "<br>$userid is skipped";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "
|
2005-02-08 04:38:31 +00:00
|
|
|
<a href=\"profile_screen_form.php\">next 20</a>
|
2004-12-20 18:29:15 +00:00
|
|
|
";
|
|
|
|
|
2005-02-08 04:38:31 +00:00
|
|
|
admin_page_tail();
|
2004-12-20 18:29:15 +00:00
|
|
|
|
|
|
|
?>
|