Kibit Posted October 1, 2008 Share Posted October 1, 2008 I've created a form and need help getting it to actually work. Here is what I have done so far... http://www.kibit.co.uk/form.html Thanks in advance to anyone who offers help. Quote Link to comment https://forums.phpfreaks.com/topic/126593-form-to-email-help/ Share on other sites More sharing options...
getmukesh Posted October 1, 2008 Share Posted October 1, 2008 i will do it quickly within 1 hours in $15.. Quote Link to comment https://forums.phpfreaks.com/topic/126593-form-to-email-help/#findComment-654610 Share on other sites More sharing options...
dropfaith Posted October 1, 2008 Share Posted October 1, 2008 heres a basic php email form you will need to edit it alot as you have way more fields then i use as far as i remember php limits how many fields it will email so you will need to build an array that holds more fields i forgot the limit tho <?php $name = $_REQUEST['name'] ; $email = $_REQUEST['email'] ; $message = $_REQUEST['message'] ; mail( "EMAIL ADDRESS TO SEND MAIL TO", "Feedback Form Results", $message, "From: $email" ); header( "Location: "EXIT PAGE TO FOWARD USERS TO GOES HERE" );?> Quote Link to comment https://forums.phpfreaks.com/topic/126593-form-to-email-help/#findComment-654611 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.