Having a problem pulling out the value from the query string on a win2k hosted site.
A basic:
if ($bob) {
print("bob!");
} else {
print("<a href='test.php?bob=yes'>goto bob</a>");
}
works on a linux host, but not 2k I get:
Warning: Undefined variable: bob in c:\webserver\development\test.php on line 3
Anything around the problem? I've searched but couldn't fine anything that helps.
Mark