Rodders wrote:What is the 'correct' way to pass form field values to a PHP script. Or rather, how should the script reference them.
Currently I am just using METHOD=GET and then in the PHP script using $variablename, but I read somewhere that there was a better method.
Can anyone enlighten me?
Thanks
Hi!
Yes in action method have 3 type:
GET - send only variable tha you send.
POST - send all form to server.
HEADER - send only headers but nothin else.
I'm using POST. :wink:

