All, Okay, I am a bit confused. I'm setting up another server to host PHP pages. I followed everything in the Manual for installing PHP. I'm running Windows Server 2003, IIS6.0 and PHP 5.2.6. And...it kind of works... If I do: <?php echo "Test"; ?> it prints fine. If I do: Today is: <?php echo date("l, F j, Y"); ?> it prints fine. If I do: You are recognized as: <?php echo substr($_SERVER['AUTH_USER'], 13); ?> I get no output. If I do: if (!$connect_id = ifx_connect("$database@$host", $user, $pass)) { // THE ACTUAL CONNECTION echo "Unable to connect to Informix Database\n"; // DISPLAY IF CONNECTION FAILS exit(); } I don't get a connection to the database and the "Unable to connect to Informix Database\n"; does not even display. I get no errors output to the screen and I have display_errors = On And I have error_reporting = E_ALL & ~E_NOTICE Any ideas?