However, on one server, I get the following result:
1. -2.
My question is, why doesn't $_GET return the values of "yes" and "no" ?
On this server (which is running Apache 2.0 and PHP 4.2.2), register_globals is set to 'on' and safe-mode is set to 'off'. I've already tried to change the code to:
<?php
print "1. " . $c . "-2. " . $s;
?>
and still get the result:
1. -2.
Are there any other directives that must be set in a certain way to enable
$_GET ? Also, this server is secure, so that I use the protocol of "https" rather than "http" for this page. I'm not sure if that matters.
I have also tried substituting $_GET with $HTTP_GET_VARS and receive the same result.
Bookmarks