Jump to content

[SOLVED] Eror message for form validation


steviemac

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.