Hello,
I recently installed PHP4|NT4 Wks|Apache on my development workstation to begin coding. the problem is this...
I followed the install instructions to the letter(very carefully); when the test script is run as phtml, nothing happens.
I get a blank page.
When it is run as php, or php3, I get a dialog that asks me which program to associate with php3 or php.
As I am new to the Apache, PHP, NT combination, it is probably something ridiculously simple.
I know that Apache works, because I get the default page, and can load web pages from 127.0.0.1/filename.html.
I also have a concern that stuff I develop will not run on Apache/Unix when the code is written... Does anyone know of portability issues between the Unix/Apache/PHP4, and NT/Apache/PHP4 ports...?
Any help would be greatly appreciated. I am trying to avoid the necessity of 2 development boxes and the problems associated with collaborative development when there is no code management system implemented (or allowed).
Here is the test page in it's entirety as taken from the PHP manual:
<head>
<title>Example</title>
</head>
<body>
<?php
echo "Hi, I'm a PHP script!";
?>
</body>
Is there the equivalent of a missing script directive or something?
thx,
Neil P Davis