<?php
include('header.php'); include('options.php');
?>
<table width="90%" border="0" align="center" cellpadding="2" cellspacing="8" bgcolor="#FFFFFF">
<tr>
<td><strong>Members</strong>
</td><tr>
<tr>
<td width="450px">
<?php
$id = $_GET['id'];
$resulty = mysql_query("UPDATE users SET active='1' WHERE usid='$id'")
or die(mysql_error());
echo '<center>Successfully!';
?>
</td>
</tr>
</table>