Hi, Could you please give me your hand? Is there the same function in PHP as "Request.QueryString" in ASP? Thanks for your help
Hi Tony,
For Request.QueryString('var') use $HTTP_GET_VARS['var'].
Alternately, if you have the correct settings in your PHP.ini file, $var is already available as a global variable.
There are extensive comparisons of ASP and PHP at http://php.weblogs.com/php_asp_objects
post your form and on the next page. <?php echo $var; ?>
no need to specify what method u used in the form.i think you'll find that php is very cool. g'luck!
If you want the whole query string, then just use the global variable $QUERY_STRING.
---John Holmes...