
spainsoccerfreak
Members-
Posts
23 -
Joined
-
Last visited
Never
Profile Information
-
Gender
Not Telling
spainsoccerfreak's Achievements

Newbie (1/5)
0
Reputation
-
PHP Form Validate email address
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
Still send the email goes to the next page where is says please enter your email address I need it ti not to to the next screen if it doesnt put in the required fields -
PHP Form Validate email address
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
Ho DO I Add the redirect under your invalid area????? -
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
-
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
-
PHP Form info send to email address
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
ini_set fixed it Thanks for the help! -
PHP Form info send to email address
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
Same error replaced the email with my email at work ($mailheaders = "From: my site<[email protected]>\r\n" which is the port SMTP I used but gives me same error message ; Still says error line 27 **Warning: mail() [function.mail]: SMTP server response: 501 5.5.4 Invalid Address in C:\xampp\htdocs\xampp\sendmail1.php on line 27** -
PHP Form info send to email address
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
$mailheaders = "From: my site<[email protected]>\r\n"; Still says error line 27 **Warning: mail() [function.mail]: SMTP server response: 501 5.5.4 Invalid Address in C:\xampp\htdocs\xampp\sendmail1.php on line 27** -
PHP Form info send to email address
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
ok sam error **Warning: mail() [function.mail]: SMTP server response: 501 5.5.4 Invalid Address in C:\xampp\htdocs\xampp\sendmail1.php on line 27** Now lien 27 in my php is *if (mail($recipient, $subject, $msg, $mailheaders))* -
PHP Form info send to email address
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
Ok I tried with a local server my company uses no the error message is this **Warning: mail() [function.mail]: SMTP server response: 501 5.5.4 Invalid Address in C:\xampp\htdocs\xampp\sendmail1.php on line 27** <php code> <html> <head> <title> Sending Email Form in listing </title> </head> <body> <?php $state = trim($_POST['state']); $school = trim($_POST['school']); $district = trim($_POST['district']); echo "<p>Thank You for your message!</p>\n"; echo "<p>Your State is: <b>$state</b></p>"; echo "<p>Your district is:<b>$district</b></p>"; //start building the mail string $msg = "State: $state\n"; $msg .= "School: $school\n"; $msg .= "District:$district\n"; //set up the mail $recipient = "[email protected]"; $subject = "Form Submition Results"; $mailheaders = "From: my site"; $mailheaders .= "Reply - To: " .$_POST["email"]; //send the mail mail if (mail($recipient, $subject, $msg, $mailheaders)) { echo "<br><br>Message sent."; } else { echo "<br><br>Problem sending email."; } ?> </body> </html> <code> -
PHP Form info send to yahoo email address
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
Ok I have mercury come with XAMPP will that work? or do I need PEAR ? -
OK SO I have my html code and PHP code I tried the form I cant get it to send the info requested to my email I have only coded first 3 things I need from to form to get email but wont work I need help and get these message when hit the submit button **Thank You for your message! Your State is: texas Your district is:OP Warning: mail() [function.mail]: Failed to connect to mailserver at "smtp.mail.yahoo.com" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:\xampp\htdocs\xampp\sendmail1.php on line 27 Problem sending email. ******************** Here is the code that I have <code html> <html> <head> <title> E-mail Form </title> </head> <body> <form action="sendmail1.php" method= "POST"> <p>State:</p> <input type="text" size="25" name="state"> <p>School:</p> <input type="text" size="25" name="school"> <p>District:</p> <input type="text" size="25" name="district"> <p>Number of Concurrent Users:</p> <input type="text" size="10" name="number"> <p>System Servers</p> <input type="checkbox" name="system" value="2003" /> Microsoft Server 2003><br> <input type="checkbox" name="system" value="2007" />Microsoft Server 2007<br> <p>SQL Server</p> <input type="checkbox" name="server" value="2000" /> SQL Server 2000<br> <input type="checkbox" name="server" value="2005" />SQL Server 2005<br> <input type="checkbox" name="server" value="2008" />SQL Server 2008<br> <p>Network</p> <input type="checkbox" name="network" value="LAN" /> LAN<br> <input type="checkbox" name="network" value="WAN" />WAN<br> <p>Connection Type</p> <input type="checkbox" name="connection" value="T1" /> T1<br> <input type="checkbox" name="connection" value="fiber" />Fiber<br> <p>Recommended Server Specifications</p> <table border="1"> <tr> <td>Concurrent User</td> <td>CPU</td> <td>CPU Utilization</td> <td>RAM</td> <td>RAID Configuration</td> </tr> <tr> <td>10 or less</td> <td>Single CPU 1GHz Or Higher</td> <td>50%</td> <td>1 GB</td> <td>Standard SQL backup policies (No RAID required)</td> </tr> <tr> <td>11-25</td> <td>Dual CPU 1 GHz Or Higher</td> <td>30%</td> <td>2 GB</td> <td>RAID 1 disk mirroring</td> </tr> <tr> <td>26-50</td> <td>Dual CPU 2 GHz Or Higher</td> <td>25%</td> <td>2 GB</td> <td>RAID 5 (Recommended)</td> </tr> <tr> <td>50+</td> <td>Dual CPU 2 GHz Or Higher</td> <td>Dedicated Server (Recommended)</td> <td>2 GB</td> <td>RAID 5 (Recommended)</td> </tr> </table> <p>Personnel</p> <table border="1"> <tr> <td>Title, Name </td> <td><input type="text" size="30" name="name"></td> </tr> <tr> <td>Database Administrator, </td> <td><input type="text" size="30" name="dataadmin"></td> </tr> <tr> <td>Systems Administrator, </td> <td><input type="text" size="30" name="systemadmin"></td> </tr> <tr> <td>Program Administrator</td> <td><input type="text" size="30" name="programadmin"></td> </tr> </table> <p><input type="submit" value="Send" /></p> </form> </body> </html> <code> <PHP code> <html> <head> <title> Sending Email Form in listing </title> </head> <body> <?php $state = trim($_POST['state']); $school = trim($_POST['school']); $district = trim($_POST['district']); echo "<p>Thank You for your message!</p>\n"; echo "<p>Your State is: <b>$state</b></p>"; echo "<p>Your district is:<b>$district</b></p>"; //start building the mail string $msg = "State: $state\n"; $msg .= "School: $school\n"; $msg .= "District:$district\n"; //set up the mail $recipient = "[email protected]"; $subject = "Form Submition Results"; $mailheaders = "From: my site"; $mailheaders .= "Reply - To: " .$_POST["email"]; //send the mail mail if (mail($recipient, $subject, $msg, $mailheaders)) { echo "<br><br>Message sent."; } else { echo "<br><br>Problem sending email."; } ?> </body> </html> <code> My PHP.ini I have it configured like this [mail function] ; For Win32 only. SMTP = smtp.mail.yahoo.com smtp_port = 25 ; For Win32 only. ;sendmail_from = [email protected]
-
PHP Form info send to email address
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
Can I use my yahoo email address will that work? -
PHP Form info send to email address
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
ok I have changed the php.ini (yes I am testing in my local machine )to the mail settings bellow still wont work but when I go to my localhost and status is says Component Status Hint MySQL database ACTIVATED PHP ACTIVATED HTTPS (SSL) ACTIVATED Common Gateway Interface (CGI) ACTIVATED Server Side Includes (SSI) ACTIVATED SMTP Service DEACTIVATED FTP Service DEACTIVATED I dont know if SMTP being deactivated is not letting it go thru <php.ini> [mail function] ; For Win32 only. SMTP = localhost smtp_port = 25 ; For Win32 only. ;sendmail_from = [email protected] <php.ini> -
PHP Form info send to email address
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
WOW I feel really nto smart LOL that did help now I got these error message but I think is the coding for email Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:\xampp\htdocs\xampp\sendmail1.php on line 27 Problem sending email. -
PHP Form info send to email address
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
OK I tried it type in the address URL Still wont work I do not know if it matter but I have it at these location *file:///C:/xampp/htdocs/xampp/test101.html* then *file:///C:/xampp/htdocs/xampp/sendmail1.php* is the file that doesnt show correct the php