|
Always use POST on form data. The only time you really want to use GET data is say....you have a registration with a referral, but people can link other poeple registration with their referral automatically filled out...you would need $_GET for that. Which I guess is kinda using it for post data, but only before it's posted...
Generally...if you can do it with post data, do it.
|