How can I capture the elements of a multipart query string? IE:
blammo.php?getform=1&files=4
I can retrieve the files bit of the query string? I'm stumped.. again. 🙂
http://www.phpbuilder.com/manual/language.variables.external.php
It will be loaded automatically by PHP - see the manual.
Or, if you have a query string as a string and you need to split it up and look at its pieces, the easiest way is to use PHP's built-in function parse_str - see http://php.net/parse_str.
-Keegan