/*
Copyright-boodschap:
Copyright (c) 2001 by Thijs Sloesen
All rights reserved!
Contact Thijs Sloesen at: epidemi@seekitfast.com
For license-details see license.txt as shipped with this product.
Auto Maasstad Site - Gebruikers Page
*/
include "shared.php";
init();
send_header("Gebruikers administreren");
if (!$session->loggedin)
{
die("Logt u a.u.b. eerst in.");
}
if (!$action)
{
?>
Huidige gebruikers:
$data = mysql_query("SELECT handle from gebruikers");
if (!$data) die("FATAL ERROR: Could not SELECT FROM 'gebruikers'!");
print "De gebruikers die op het moment in de database staan:
";
while ($dat = mysql_fetch_array($data))
{
print $dat["handle"]." - Verwijder
";
}
?>
}
else if ($action=="remove")
{
if (!$handle)
die("Geef een gebruikersnaam op!");
$result = mysql_query("DELETE FROM gebruikers WHERE handle='$handle'");
if (!$result)
die("FATAL ERROR: Could not DELETE FROM 'gebruikers'!");
die("De gebruiker is successvol verwijderd!");
}
else if ($action=="add")
{
if (!$handle)
die ("Geef een gebruikersnaam op!");
if (!$password)
die ("Geef een password op!");
$result = mysql_query("INSERT INTO gebruikers (Handle, Password) VALUES('$handle', '$password');");
if (!$result)
die ("FATAL ERROR: Could not INSERT INTO 'gebruikers'!");
die ("De gebruiker is toegevoegd.");
}
send_footer();
?>