Hunter94 Posted February 12, 2009 Share Posted February 12, 2009 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. Quote Link to comment https://forums.phpfreaks.com/topic/144999-php-email-form/ Share on other sites More sharing options...
samshel Posted February 12, 2009 Share Posted February 12, 2009 the only reason the page displays PHP code, is that the web server is not set up with PHP and it does not understand that it has to parse .php page as PHP files. Quote Link to comment https://forums.phpfreaks.com/topic/144999-php-email-form/#findComment-760846 Share on other sites More sharing options...
Hunter94 Posted February 12, 2009 Author Share Posted February 12, 2009 K, thank you for telling me that. But do you know why it won't send me an email? Quote Link to comment https://forums.phpfreaks.com/topic/144999-php-email-form/#findComment-760870 Share on other sites More sharing options...
samshel Posted February 12, 2009 Share Posted February 12, 2009 sending email code is in PHP, for sending email the PHP code must be executed. Your webserver does not how to execute PHP. Please compile your webserver with PHP and try. Quote Link to comment https://forums.phpfreaks.com/topic/144999-php-email-form/#findComment-760873 Share on other sites More sharing options...
alphanumetrix Posted February 12, 2009 Share Posted February 12, 2009 yeah, the guy above me is right. it's probably not because your server doesn't have PHP installed; most likely cause is PHP mail is just restricting on your server. Are you on shared server by chance? *god, i hate this verification thingy Quote Link to comment https://forums.phpfreaks.com/topic/144999-php-email-form/#findComment-760878 Share on other sites More sharing options...
Hunter94 Posted February 13, 2009 Author Share Posted February 13, 2009 Ok, I got it to work. All I had to do is stick on a webhost. Thank you for the help guys! =) Quote Link to comment https://forums.phpfreaks.com/topic/144999-php-email-form/#findComment-760928 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.