Jump to content

Send form data


kurt.santo

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.