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. 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.. 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" );?> Link to comment https://forums.phpfreaks.com/topic/126593-form-to-email-help/#findComment-654611 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.