Howdy,
I have attempted to install PHP 5.1.4 on a Windows NT system with Netscape Enterprise Server (3.6? not my choice). It seems like it is partially installed. I mean, when you run phpinfo you get:
http://128.194.109.84/users/wong/php_info.php
<html>
<head>
<title>PHP info</title>
</head>
<body>
<?php
phpinfo();
?>
</body>
</html>
Something's definately happening, but something's definately not correct. I am trying to diagnose the problem by running other scrpts. A good, short example of what's wrong is shown by this script:
http://128.194.109.84/users/wong/timetest.php
It displays something like this:
09:21:50 am</b> on the computer running PHP.</p>
instead of this:
This page was created at 09:19:14 am on the computer running PHP.
Here's the code:
<p>This page was created at <b>
<?php echo date("h:i:s a", time()); ?>
</b> on the computer running PHP.</p>
I tried looking up troubleshooting problems in php.net and google, but I am having a really hard time because I really don't know how to describe this problem in one or two keywords.
Help is much appreciated!