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( "[email protected]", "Feedback Form Results", $message, "From: $email", "Name: $name"); header( "Location: http://www.somehow.com/thankyou.htm" ); Any help appreciated! Kurt 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? Link to comment https://forums.phpfreaks.com/topic/84463-send-form-data/#findComment-430340 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.