Jump to content

Run a PHP function before completing a form submit!


leeh14

Recommended Posts

Hi,

 

I wouder if someone can help me with this issue? I want a user to click submit on a form which posts the data of to a processing page! but i only want a user to be taken to the processing page if the data in the fields passes some vailation. If the data does not pass the validation error message appear!

 

What way could this be done?

Link to comment
Share on other sites

This displays the error

if(isset($error)){
	echo  $error;
	}

This can be called in a different php file and will display an error if given one.

if(isset($_POST['stuff'])){
	$text = $_POST[text];
if($text != null){
$error = $text;
} else {
$error = "error: text is null";
}
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.