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
How do I make a website field mandatory?PHP program to register students' record
How can I access information sent through GET on a form?
What are magic quotes?
How do I check for an empty field in a form?
