Suppose there is a HTML file that has a form in it , which contains some data , which have been taken input from the user using textarea and checkbox . How do I send this data across to a PHP file ?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
you can post this data by submitting form and then on the php file you can use |
|||
|
|
|
The values from the form will be available in either, the $_GET and $_POST arrays, depending on the method used in the form. |
|||
|
|
|
All form variables will be in $_GET or $_POST array in php (depending on which method you use to submit the form. The textarea or checkbox need to be named like this:
|
||||
|
|
|
The action attribute of a form defines the php script (or other script) the form data gets send to. You will be able to get the data using
|
|||
|
|