To check if a form submitted you could do something like.
But how can you check if the form DOESN'T submit?
Say I wanted to do something similar to.
if form doesn't submit echo failure message
elseif run this command
Thanks,
Steven
PHP Code:
If (isset($_POST['submit']))
{
}
Say I wanted to do something similar to.
if form doesn't submit echo failure message
elseif run this command
Thanks,
Steven
Comment