The user has been added successfully.
The user has been eliminated successfully.
";
}
}
if (isset($_GET["modified"])) {
if ($_GET["modified"]=="true") {
echo "The user has been modified successfully.
";
}
}
if (isset($_GET["error"])) {
if ($_GET["error"]==1) {
echo "The username is not available.
";
} elseif ($_GET["error"]==2) {
echo "Error on the database server: ".$_GET["des"]."
";
}
}
?>