Im soooooo stumped.
Click this link for the actual script.
Click here
I want the FORM to not show after the script is EXECUTED. I want this on one page so I dont have multiple pages. PLEASE HELP!
<?
if ($Submit) {
if ($name == "") {
echo "There is a error on the script";
}else{
echo "Success - name was properly executed. However does the form still display? If so I want to remove this after submit.";
}
} ###end submit
?>
<form method="post" action="">
<input name="name" type="text" value="<? echo $name; ?>">
<input type="submit" name="Submit" value="Submit">
</form>