getUsers(); $arrlength=count($users); echo "List of users:" . "
";
for($x=0;$x<$arrlength;$x++)
{
$name = $users[$x][0];
if($name != "admin") echo $x . " : " . $name ."------>"."Delete" . "
";
}
if($arrlength == 1) echo "There are not new members on db!";
}else header('Location: index.php');
?>