
spainsoccerfreak
Members-
Posts
23 -
Joined
-
Last visited
Never
Everything posted by spainsoccerfreak
-
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 -
PHP Form info send to email address
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
Ok I did heres screen I get XAMPP Status This page offers you one page to view all information about what's running and working, and what isn't working. 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 Some changes to the configuration may sometimes cause false negatives. All reports viewed with SSL (https://localhost) do not function! -
PHP Form info send to email address
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
Ok thanks for the help but I put the code in that was given to me in orevious post after I hit submit this is what shows up on the next screen Thank You, $name, for your message! \n"; echo " Your email address is: $email "; echo " Your message was: ".nl2br($msg)." "; //start building the mail string $msg = "Name: $name\n"; $msg .= "E-mail: $email\n"; $msg .= "Message:\n$msg\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 " Message sent." } else { echo " Problem sending email." } ?> instead of the name email and sent email please help Also how do I check to see if PHP is enable in my enviroment and if is nto how do I fix it? -
PHP Form info send to email address
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
help -
Ok here the code for both html and php I need this info to send to an email address I try it and after I hit submit it just shows me these on the screen (red text) Why doesnt it show me the name instead of the post and also I get nothing to my email please help my job depends on it! Thank You, " .$_POST["name"].", for your message!"; echo "you email address is: .$_POST["email"].""; echo "your message was:"; echo $_POST["message"].""; //start building the mail string $msg = "Name: ".$_POST["name"]."\n"; $msg = "E-mail: ".$_POST["email"]."\n"; $msg = "Message: ".$_POST["message"]."\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 mail($recipient, $subject, $msg, $mailheaders); ?> HTML <html> <head> <title> E-mail Form </title> </head> <body> <form action="sendmail.php" method= "POST"> <p>Name:</p> <input type="text" size="25" name="name"> <p>Email Address</p> <input type="text" size="25" name="email"> <p>Message:</p> <textarea name="message" cols="30" rows="5"></textarea> <p><input type="submit" value="send" /></p> </form> </body> </html> and PHP <html> <head> <title> Sending Email Form in listing </title> </head> <body> <?php echo "<p>Thank You, <b>" .$_POST["name"]."</b>, for your message!</p>"; echo "<p>you email address is: <b> .$_POST["email"]."</b></p>"; echo "<p>your message was:<br />"; echo $_POST["message"]."</p>"; //start building the mail string $msg = "Name: ".$_POST["name"]."\n"; $msg = "E-mail: ".$_POST["email"]."\n"; $msg = "Message: ".$_POST["message"]."\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 mail($recipient, $subject, $msg, $mailheaders); ?> </body> </html>[/]
-
php help with validation of a form.
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
took the extra { still wont work -
php help with validation of a form.
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
no error messages jsut after I hit the summit button on my html page and goes to the php page shows this instead of showing the info entered into the form shows me the code not the results hope someone can help me! Please enter First Name" ; } else if (is_numeric($firstname)) { echo "First Name: Please enter a Valid First Name"; } else echo "First Name: $firstname"; ?> Please enter Last Name" ; else if (is_numeric($lastname)) echo "First Name: Please enter a Valid Last Name"; else echo "First Name: $lastname";?> Please enter Phone Number" ; else if (!is_numeric($phone)) "Phone Number: Please enter a Valid Phone Number"; else echo "Phone Number: $phone";?> Please enter your email address."; else // IF USER ENTERED AN INVALID EMAIL ADDRESS if(preg_match('/.*@.*\..*/', $email) > 0) echo "Email: $email"; else echo "Email: Please enter a valid email address."; ?> Please enter Organization" ; else echo "Organization: $organization";?> {$_POST["product"]}";?> Please enter Serial Number" ; else echo "Serial Number: $serial";?> Start Over -
php help with validation of a form.
spainsoccerfreak replied to spainsoccerfreak's topic in PHP Coding Help
Still not working can anyone try it on their end and see if it gives you an error????? -
ok so I have 2 files one html and one php html seems to work fine and at one point so did the php one but now when I hit summit the php shows me part of the code doesnt work properly ok here the html: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Example</title> <style type="text/css"> hr {color: sienna} p {margin-left: 20px} body {background-image: url("images/back40.gif");font-size:16px} h1 {margin-left: 20px;font-size:16px} </style> </head> <body> <form action="form.php" method="POST"> <br><br> <h1>First name:<br> <input type="text" name="firstname"> <br><br> Last name: <br> <input type="text" name="lastname"> <br><br> <font color="red">Phone Number:*</font><br> <input type="text" name="phone"> <br><br> <font color="red">Email:* </font><br> <input type="text" name="email"> <br><br> Organization:<br> <input type="text" name="organization"> <br><br> <font color="red">Product:*</font><br> <select name="product"> <option value="WIAT-II" SELECTED>WIAT-II</option> <option value="WAIS IV">WAIS IV</option> </select> <br><br> <font color="red">Serial Number:*</font><br> <input type="text" name="serial" > <br><br> <input type="submit" value="Submit" name="submit"> </h1> </form> </body> </html> AND the PHP PARt is : <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <style type="text/css"> h1 {margin-left: 40px;font-size:16px;margin-top: 60px;text-decoration: none}; div.error {color: #ff0000}; </style></head > <body> <h1><?php $firstname = $_POST['firstname']; $lastname = $_POST['lastname']; $phone = $_POST['phone']; $email = $_POST['email']; $organization = $_POST['organization']; $serial = $_POST['serial']; ?> <!-- First Name validation --> <?php if (empty ($firstname)) { echo "First Name: <br/> Please enter First Name" ; } else if (is_numeric($firstname)) { echo "First Name: <br/> Please enter a Valid First Name"; } else echo "First Name: <br/> $firstname"; ?> <br/><br/> <!-- First Name validation --> <!-- Last Name validation --> <?php if (empty ($lastname)){ echo "First Name: <br/> Please enter Last Name" ; else if (is_numeric($lastname)) echo "First Name: <br/> Please enter a Valid Last Name"; else echo "First Name: <br/> $lastname";?><br/><br/> <!-- Last Name validation --> <!-- Phone Number validation --> <?php if (empty ($phone)) echo "Phone Number: <br/> Please enter Phone Number" ; else if (!is_numeric($phone)) "Phone Number: <br/> Please enter a Valid Phone Number"; else echo "Phone Number: <br/> $phone";?><br/><br/> <!-- Phone Number validation --> <!-- Email validation --> <?php if(empty($email)) echo "Email: <br/> Please enter your email address."; else // IF USER ENTERED AN INVALID EMAIL ADDRESS if(preg_match('/.*@.*\..*/', $email) > 0) echo "Email: <br/> $email"; else echo "Email: <br/> Please enter a valid email address."; ?><br/><br/> <!-- Email validation --> <!-- Organization validation --> <?php if (empty ($organization)) echo "Organization: <br/> Please enter Organization" ; else echo "Organization: <br/> $organization";?><br/><br/> <!-- Organization validation --> <?php echo " Product:<br/> {$_POST["product"]}";?><br/><br/> <!-- Serial Number Validation --> <?php if (empty ($serial)) echo "Serial Number: <br/> Please enter Serial Number" ; else echo "Serial Number:<br/> $serial";?><br/><br/> <!-- Serial Number Validation --> <a href="form.html">Start Over</a></h1> </body> </html> please help me I had it working and then something happened I cant figure it out thanks!!