Welcome, ' . $uname . '
';
if ($_SESSION['access'] < 9){ //need to make this a SQL query instead
echo'
You don\'t have access to these tools!
';
} else {
echo 'Delete a toon here
'; //page doesn't actually exist yet
echo 'This will delete a character from a user account, and all of it\'s recorded drop data - this is not reversible!
';
echo 'Delete a user here
'; //page doesn't actually exist yet
echo 'This will delete the user, all of their associated toons, and associated drop data - this is NOT reversible!
';
}
echo 'Click HERE to return to the home page!';
} else {
echo 'Login Required';
echo '';
}
?>