
Hunter94
Members-
Posts
17 -
Joined
-
Last visited
Never
Profile Information
-
Gender
Not Telling
Hunter94's Achievements

Newbie (1/5)
0
Reputation
-
Hey, I'm looking for a Free PHP Referral System. Does any one have one?
-
Lol, thank you. That fixed it. Just had to recode allot of it lol.
-
Hmm, can you show what part I need to fix? I'm confused.
-
Ok, I got every thing working and I was adding new sections of the form and I got done and I get this error each time I try and send it. Parse error: syntax error, unexpected T_STRING in /home/a4202716/public_html/sendeail.php on line 62 here is sendeail.php if you guys can fix it for me that would be great. Lol I suck with php. =) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Sendemail Script</title> </head> <body> <!-- Reminder: Add the link for the 'next page' (at the bottom) --> <!-- Reminder: Change 'YourEmail' to Your real email --> <?php $ip = $_POST['ip']; $httpref = $_POST['httpref']; $httpagent = $_POST['httpagent']; $visitor = $_POST['visitor']; $visitormail = $_POST['visitormail']; $name = $_POST['name']; $notes = $_POST['notes']; $attn = $_POST['attn']; $image = $_POST['image']; $size = $_POST['size']; $font = $_POST['font']; if (eregi('http:', $notes)) { die ("Do NOT try that! ! "); } if(!$visitormail == "" && (!strstr($visitormail,"@") || !strstr($visitormail,"."))) { echo "<h2>Use Back - Enter valid e-mail</h2>\n"; $badinput = "<h2>Feedback was NOT submitted</h2>\n"; echo $badinput; die ("Go back! ! "); } if(empty($visitor) || empty($visitormail) || empty($notes )) { echo "<h2>Use Back - fill in all fields</h2>\n"; die ("Use back! ! "); } $todayis = date("l, F j, Y, g:i a") ; $attn = $attn ; $subject = $attn; $notes = stripcslashes($notes); $message = " $todayis [EST] \n Attention: $attn \n Message: $notes \n From: $visitor ($visitormail)\n Additional Info : IP = $ip \n Browser Info: $httpagent \n Referral : $httpref \n Name on the Graphic : $name \n Image on the Graphic : $image \n Size of Graphic (Leave this blank if you want me to pick a size out for you.) : $size \n Font (Leave this blank if you want me to pick one out. If you want to pick one out get it from. <a href="http://www.dafont.com/">Dafont</a>) : $font \n "; $from = "From: $visitormail\r\n"; mail("[email protected]", $subject, $message, $from); ?> <p align="center"> Date: <?php echo $todayis ?> <br /> Thank You : <?php echo $visitor ?> ( <?php echo $visitormail ?> ) <br /> Attention: <?php echo $attn ?> <br /> Message:<br /> <?php $notesout = str_replace("\r", "<br/>", $notes); echo $notesout; ?> <br /> <?php echo $ip ?> <br /><br /> <a href="contact.php"> Next Page </a> </p> </body> </html>
-
Yea, it wont send and I'm using 000webhost its all setup already. =/ This is the message I get after I send the test message. Date: Saturday, November 7, 2009, 11:22 pm Thank You : Hunter ( [email protected] ) Attention: Sales n Billing Message: Noob face test 98.
-
Alright, well here it is. I can't find any thing wrong with it. And here is my email I'm using. [email protected] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Email Form </title> </head> <body> <form method="post" action="sendeail.php"> <!-- DO NOT change ANY of the php sections --> <?php $ipi = getenv("REMOTE_ADDR"); $httprefi = getenv ("HTTP_REFERER"); $httpagenti = getenv ("HTTP_USER_AGENT"); ?> <input type="hidden" name="ip" value="<?php echo $ipi ?>" /> <input type="hidden" name="httpref" value="<?php echo $httprefi ?>" /> <input type="hidden" name="httpagent" value="<?php echo $httpagenti ?>" /> Your Name: <br /> <input type="text" name="visitor" size="35" /> <br /> Your Email:<br /> <input type="text" name="visitormail" size="35" /> <br /> <br /> <br /> Attention:<br /> <select name="attn" size="1"> <option value=" Sales n Billing ">Sales n Billing </option> <option value=" General Support ">General Support </option> <option value=" Technical Support ">Technical Support </option> <option value=" Webmaster ">Webmaster </option> </select> <br /><br /> Mail Message: <br /> <textarea name="notes" rows="4" cols="40"></textarea> <br /> <input type="submit" value="Send Mail" /> <br /> </form> </body> </html> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Sendemail Script</title> </head> <body> <!-- Reminder: Add the link for the 'next page' (at the bottom) --> <!-- Reminder: Change 'YourEmail' to Your real email --> <?php $ip = $_POST['ip']; $httpref = $_POST['httpref']; $httpagent = $_POST['httpagent']; $visitor = $_POST['visitor']; $visitormail = $_POST['visitormail']; $notes = $_POST['notes']; $attn = $_POST['attn']; if (eregi('http:', $notes)) { die ("Do NOT try that! ! "); } if(!$visitormail == "" && (!strstr($visitormail,"@") || !strstr($visitormail,"."))) { echo "<h2>Use Back - Enter valid e-mail</h2>\n"; $badinput = "<h2>Feedback was NOT submitted</h2>\n"; echo $badinput; die ("Go back! ! "); } if(empty($visitor) || empty($visitormail) || empty($notes )) { echo "<h2>Use Back - fill in all fields</h2>\n"; die ("Use back! ! "); } $todayis = date("l, F j, Y, g:i a") ; $attn = $attn ; $subject = $attn; $notes = stripcslashes($notes); $message = " $todayis [EST] \n Attention: $attn \n Message: $notes \n From: $visitor ($visitormail)\n Additional Info : IP = $ip \n Browser Info: $httpagent \n Referral : $httpref \n "; $from = "From: $visitormail\r\n"; mail("[email protected]", $subject, $message, $from); ?> <p align="center"> Date: <?php echo $todayis ?> <br /> Thank You : <?php echo $visitor ?> ( <?php echo $visitormail ?> ) <br /> Attention: <?php echo $attn ?> <br /> Message:<br /> <?php $notesout = str_replace("\r", "<br/>", $notes); echo $notesout; ?> <br /> <?php echo $ip ?> <br /><br /> <a href="contact.php"> Next Page </a> </p> </body> </html>
-
I know its possible I've done it before but can't find a code that will work. I don't know if its my email but it doesn't work with any of mine. Can you please send me a code that will work. Thank You Hunter Davis.
-
Luke that didn't do any thing. I need it to show there Name, & subject when they fill out the form and post it. But it only shows me the Message and Email. Does any one know how to make this happen?
-
Ok, I did that and added my info in and it still just sends me the Email and the Stuff in the message. Heres the PHP Code the HTML Code stayed the same. PHP Code: <?php $name = $_REQUEST['name']; $email = $_REQUEST['email'] ; $subject = $_REQUEST['subject']; $message = $_REQUEST['message'] ; mail( "[email protected]", "iaminfinity.net Question/Comment.", $message, "From: $email" ); header( "Location: www.iaminfinity.net" ); ?>
-
Ok, well it gives me an email now but still no Name or Subject just email and message. Heres the codes. HTML Code: <form method="post" action="sendmail.php"> Full Name:<input name="name" type="text" /><br /> <br /> Your Email:<input name="email" type="text" /><br /> <br /> Subject:<input name="subject" type="text" /><br /> Message:<br /> <textarea name="message" rows="15" cols="40"> </textarea><br /> <input type="submit" /> </form>] PHP Code: <?php $email = $_REQUEST['email'] ; $message = $_REQUEST['message'] ; mail( "[email protected]", "iaminfinity.net Question/Comment.", $message, "From: $email" ); header( "Location: www.iaminfinity.net" ); ?>
-
Ok, I got every thing to work on the website I only got one problem with the form. When I do a test submit I fill out my name, email, subject and message then submit it. I go to my email to see if it worked it does but it only sends me the message. It doesn't tell me there Name, Email or subject just the message. Heres the HTML and PHP code. HTML Code: <form method="post" action="sendmail.php"> Full Name:<input name="email" type="text" /><br /> <br /> Your Email:<input name="email" type="text" /><br /> <br /> Subject:<input name="email" type="text" /><br /> Message:<br /> <textarea name="message" rows="15" cols="40"> </textarea><br /> <input type="submit" /> </form>] PHP Code: <?php $email = $_REQUEST['email'] ; $message = $_REQUEST['message'] ; mail( "[email protected]", "iaminfinity.net Question/Comment.", $message, "From: $email" ); header( "Location: www.iaminfinity.net" ); ?> I think the problem is that the PHP code is missing some code to send me the stuff I want. Also here is what the Form looks like on a Webpage. http://iaminfinity.net/emailsubmit.html
-
Ok, I got it to work. All I had to do is stick on a webhost. Thank you for the help guys! =)
-
K, thank you for telling me that. But do you know why it won't send me an email?
-
Ok well here is the PHP Email Form I'm using. HTML Code: <form method="post" action="sendmail.php"> Email: <input name="email" type="text" /><br /> Message:<br /> <textarea name="message" rows="15" cols="40"> </textarea><br /> <input type="submit" /> </form> PHP Code: <?php $email = $_REQUEST['email'] ; $message = $_REQUEST['message'] ; mail( "[email protected]", "Feedback Form Results", $message, "From: $email" ); header( "Location: http://www.example.com/thankyou.html" ); ?> When I change every thing to my Info it doesn't send anything to my email and when I click Submit Query it just redirects me to the PHP Code. NOTE: I haven't put it on the internet so I'm not sure if that's the problem or not. Thank You Hunter Davis.
-
Is there a way I could make a form so when people submit it, it sends the form they filled out to my email? Heres what kind of code I'm talking about. (Oh and if there is a code for my question please post it so I can add it.) <form action="/html/tags/html_form_tag_action.cfm" method="get"> <table> <tr> <td>First name:</td> <td> <input type="text" name="first_name" value="" maxlength="100" /> </td> </tr> <tr> <td>Lunch:</td> <td> <input type="radio" name="lunch" value="pasta" /> Pasta <input type="radio" name="lunch" value="rissotto" /> Rissotto </td> </tr> <tr><td>Drinks:</td> <td> <input type="checkbox" name="drinks" value="beer" /> Beer <input type="checkbox" name="drinks" value="wine" /> Wine </td> </tr> <tr><td>Preferred City:</td> <td> <select> <option value ="sydney">Sydney</option> <option value ="melbourne">Melbourne</option> <option value ="cromwell">Cromwell</option> <option value ="queenstown">Queenstown</option> </select> </td> </tr> <tr> <td>Comments:</td> <td> <textarea rows="3" cols="20"></textarea> </td> </tr> <tr><td> </td> <td> <input type="submit" value="Submit" /> </td> </tr> </table>