kurt.santo Posted January 4, 2008 Share Posted January 4, 2008 Does anyone know how to send form data with PHP when sending more than 5 parameters? Have a little script, but works not for my new form, which has ca 20 parameters to send. This one takes only 5... Old script is: $email = $_REQUEST['email'] ; $name = $_REQUEST['name'] ; $surname = $_REQUEST['surname'] ; $message = $_REQUEST['message'] ; mail( "kurt@somwhere.com", "Feedback Form Results", $message, "From: $email", "Name: $name"); header( "Location: http://www.somehow.com/thankyou.htm" ); Any help appreciated! Kurt Quote Link to comment https://forums.phpfreaks.com/topic/84463-send-form-data/ Share on other sites More sharing options...
Daniel0 Posted January 4, 2008 Share Posted January 4, 2008 Uh, well what do you mean with parameters? Quote Link to comment https://forums.phpfreaks.com/topic/84463-send-form-data/#findComment-430340 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.