spainsoccerfreak Posted January 29, 2009 Share Posted January 29, 2009 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 Quote Link to comment https://forums.phpfreaks.com/topic/142973-php-form-info-send-to-email-address/ Share on other sites More sharing options...
MatthewJ Posted January 29, 2009 Share Posted January 29, 2009 You need to put the whole mail procedure into an if like: if(form has been submitted and no errors were found) { // Handle and send the email } else { // Show the form and errors } Quote Link to comment https://forums.phpfreaks.com/topic/142973-php-form-info-send-to-email-address/#findComment-749772 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.