Entries tagged with 'forms'

Your Ad Here

Simplified PHP $_POST data handling

When posting data from a form to a page, the $_POST variable gets set to an array similar to this:
Array ([name] => “daniel”, [state] => “illinois”, [phone] => “630-618-9588″)
Now, one way to process this is to know in advance (which, normally you will), what the values will be, and set them to more usable variables. [...]