mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
54 lines
1.8 KiB
PHP
54 lines
1.8 KiB
PHP
<?php
|
|
require "include/bittorrent.php";
|
|
dbconn();
|
|
loggedinorreturn();
|
|
|
|
if (get_user_class() < UC_MODERATOR)
|
|
stderr("Sorry", "Access denied.");
|
|
$status = $_GET['status'];
|
|
if ($status)
|
|
int_check($status,true);
|
|
|
|
$res = sql_query("SELECT * FROM users WHERE status='pending' ORDER BY username" ) or sqlerr();
|
|
if( mysql_num_rows($res) != 0 )
|
|
{
|
|
stdhead("Unconfirmed Users");
|
|
begin_main_frame();
|
|
begin_frame("");
|
|
print'<br><table width=100% border=1 cellspacing=0 cellpadding=5>';
|
|
if ($status)
|
|
print '<tr><td class=rowhead colspan=5><font color=red size=1>The User account has been updated!</font></tr></td>';
|
|
print'<tr>';
|
|
print'<td class=rowhead><center>Name</center></td>';
|
|
print'<td class=rowhead><center>eMail</center></td>';
|
|
print'<td class=rowhead><center>Added</center></td>';
|
|
print'<td class=rowhead><center>Set Status</center></td>';
|
|
print'<td class=rowhead><center>Confirm</center></td>';
|
|
print'</tr>';
|
|
while( $row = mysql_fetch_assoc($res) )
|
|
{
|
|
$id = $row['id'];
|
|
print'<tr><form method=post action=modtask.php>';
|
|
print'<input type=hidden name=\'action\' value=\'confirmuser\'>';
|
|
print("<input type=hidden name='userid' value='$id'>");
|
|
print'<a href="userdetails.php?id=' . $row['id'] . '"><td><center>' . $row['username'] . '</center></td></a>';
|
|
print'<td align=center> ' . $row['email'] . '</td>';
|
|
print'<td align=center> ' . $row['added'] . '</td>';
|
|
print'<td align=center><select name=confirm><option value=pending>pending</option><option value=confirmed>confirmed</option></select></td>';
|
|
print'<td align=center><input type=submit value="-Go-" style=\'height: 20px; width: 40px\'>';
|
|
print'</form></tr>';
|
|
}
|
|
print '</table>';
|
|
end_frame();
|
|
end_main_frame();
|
|
}else{
|
|
if ($status) {
|
|
stderr("Updated!","The user account has been updated.");
|
|
}
|
|
else {
|
|
stderr("Ups!","Nothing Found...");
|
|
}
|
|
}
|
|
|
|
stdfoot();
|