Jump to content

Recommended Posts

Can any one tell me why my form validation error message are not posting?  Everything else in the code works fine.

<?
if(isset($todo) and $todo=="change-email"){
$email=mysql_real_escape_string($email);
//Setting flags for checking
$status = "OK";
$msg="";

if (!preg_match("/^([a-zA-Z0-9])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-]+)+/", $_POST['email'])){
$msg=$msg."Yor E-Mail Address does not appear to be valid<BR>";
$status= "NOTOK";}					

if ( $email <> $email2 ){
$msg=$msg."Both email addresses are not matching<BR>";
$status= "NOTOK";}					



if($status<>"OK"){ 
echo "<p align=\"center\"><input type='button' value='Retry' onClick='history.go(-1)'></p>";
}else{ // if all validations are passed.
if(mysql_query("UPDATE table set email='$email' where userName='$curUser'")){
echo "<p align=\"center\">Your email address has been successfully changed.<br>";
echo "Go back to <a href=\"index.php\"> The Members Page</a></p>";
}
}
}


?>

Link to comment
https://forums.phpfreaks.com/topic/53931-solved-eror-message-for-form-validation/
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.