To access the data sent this way, you use the $_POST array.
Imagine you have a form field called ‘firstname’ on the form when the user clicks submit to the post form, you can then access the value like this:
$_POST["firstname"];
To access the data sent this way, you use the $_POST array.
Imagine you have a form field called ‘firstname’ on the form when the user clicks submit to the post form, you can then access the value like this:
$_POST["firstname"];