How can I access information sent through POST on a form?
To access the data posted, you use the $_POST array like this:
Imagine you have a form field called 'name' on the form, when the user clicks submit to the post form, you can then access the value like this:
$_POST["name"]; and that's all there is to it!
Comments on this Question/Answer
What is the full syntax of using post method when you want to access information sent through aformBy: MAJIGO, 22 May 2009 09:44:17
How can i edit the database records in one form into another.
By: J.Ranipriyanka, 03 Dec 2009 00:34:05
Reply to comments / post your own comment >>>
ASK A QUESTION
More forms PHP Questions
What are magic quotes?How do I remove escape characters from data?
I am having a form. Here, i am submitting the form using java script as its necessary. If the form method is get, i am able to get in redirection page and can get the hidden values in the form. But if the form method is post, i am not able to get those hi
how to avoid the refresh or goback to submit the post values in database
How do I check for an empty field in a form?
