before you tell to RTFM or to set the php.ini variable "error_reporting" to E_ALL & ~E_NOTICE, hear me out first.
changing the following php.ini variable does NOT solve the problem. sure, i can turn off "Notice" Warnings and those messages will go away, but my variables have no value to them!
i can't even perform the very trial task of printing out browser information. the following code...
<?php
echo $HTTP_USER_AGENT;
?>
produces this message:
Notice: Undefined variable: HTTP_USER_AGENT in C:\Program Files\Abyss Web Server\htdocs\car.php on line 10
i believe i have php installed on my webserver correctly because some other things in PHP will work. for instance, i've tested pages that will "require" variables from other files. that works. and printing phpinfo() works too.
i've tried using apache, IIS, and all other sorts of third-party web servers like BadBlue, PHPTriad and Abyss Web Server (using this now).
if some could please help, i'd be very thankful. i've been pouring myself through any kind of documentation, but none of the advice seems to work.