I installed Apache1.3.28 and Php 4.3.4 on Windows 2000 according to the installation guides.
I add the following lines to httpd.conf:
LoadModule php4_module c:/php/php4apache.dll
AddModule mod_php4.c
AddType application/x-httpd-php .php
The problems is that when I start for example phpinfo.php,
IE shows me the source of the php instead of executing it.
The contents of phpinfo.php is:
<HTML>
<HEAD>
<TITLE>PHP-info</TITLE>
</HEAD>
<BODY>
<?php
phpinfo();
?>
</BODY>
</HTML>
Can anyone help me?
Thanks in advance.
Klaas