Jump to content

Recommended Posts

OK SO I got these html and php working to send info to my email got

conditions if for example name is empty display a message but

I want it when the press the send button if the require field

is not field not to go to the next page and send me email here the

php for email condition

 

<code>

//E-Mail validation

 

if(empty($email))

 

        echo "<br/> Please enter your email address.";

 

 

    else

 

        // IF USER ENTERED AN INVALID EMAIL ADDRESS

        if(preg_match('/.*@.*\..*/',  $email) > 0)

 

            echo "<br/>Email: $email";

   

        else

     

  echo " <br/> Email: Please enter a valid email address.";

 

 

 

//E-Mail validation

 

Link to comment
https://forums.phpfreaks.com/topic/142982-php-form-validate-email-address/
Share on other sites

if (empty($_POST['email'])) {

    print "<br /> Please enter your email address.";
   
} elseif (!eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $_POST['email'])) {

   print " <br /> Email: Please enter a valid email address.";
     
} else {

    print "<br />Email: $_POST[email]";

}

 

if (empty($_POST['email'])) {

    print "<br /> Please enter your email address.";
   
} elseif (!eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $_POST['email'])) {

   print " <br /> Email: Please enter a valid email address.";
     
} else {

    header('Location: http://www.example.com');

}

 

 

 

 

 

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.