Okay. Here's a simple PHP code to display a variable:
<?php print "My ip is: $REMOTE_ADDR"; ?>
When I go to my browser and view this page, I get:
Notice: Undefined variable: REMOTE_ADDR in c:\inetpub\wwwroot\db\test2.php on line 7
My ip is:
Does anybody know why my environment variables aren't working. I checked my phpinfo() and it shows loaded.
Any ideas? This is creating some big problems.
Thanks!