Jump to content

handling web forms data


plooto

Recommended Posts

I would suggest doing something like this while testing just to know a little more.

 

 

if (isset($_POST['sent_input_name']))

{

echo 'post is active';

$sent_input =  $_POST['sent_input_name']; //the name in this POST superGlobal should be the same as the name of the input element.

}

echo 'information in sent input is: '.$sent_input;

 

 

This should let you know if you have received the information in the first place.

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.