Sorry! I'm poor Endlish!
Notice:
You sure wite
<?php
print("H");
print("e");
print("l");
print("l");
print("o");
?>
Nearby wrote:
I got the PHP 4.0.5 installation file (php405-installer.exe) and ran it on my Win2K box. The installation finished ok. I made NO changes to any .ini files (neither copying nor editing or renaming)
I wrote a file try.php to test the installation. the content of the file is
print("H");
print("e");
print("l");
print("l");
print("o");
I started it in a console (cmd) and the result is:
c:>\php\php.exe try.php
X-Powered-By: PHP/4.0.5
Content-type: text/html
print("H");
print("e");
print("l");
print("l");
print("o");
c:>
The execution of the script from the PHP directory
c:\php>php.exe c:\try.php
gave the same result:
X-Powered-By: PHP/4.0.5
Content-type: text/html
print("H");
print("e");
print("l");
print("l");
print("o");
c:\php>
Can someone explain me what, the heck, is going on and why my script is not executed but listed instead?
Are the configuration files so important for the interpreter to work standalone? What I have to put in them to make t....