Nightfox, I think I know where you're coming from... You want to post both GET and POST data at once. Sounds pointless? Well it's not completely.
I've used that method for pages that use a same PHP script to present all different pages, varying the content based on the GET variables. Sometimes it happens that you want to use a form on such page and sending it all through GET would get you really messy URLs and it could be that the information is delicate. On the otherhand using POST for everything would be inconvenient as user would not get a direct URL to the page and also because you'd might have to rewrite the page generating PHP script.
Oh and it does work, juts put the GET variables in end of the URL in the action argument and use POST as the method.
QUOTE(arukomp @ Sep 17 2006, 11:20 AM)

When you post something with form and with POST method, it's a good idea to use $_GET['string'] to get string values.
What the...
QUOTE(arukomp @ Sep 17 2006, 11:20 AM)

I hope this helped you a lot

I'm most certain that it didnt.
Reply