Hi,
I've installed php 5.14 with Apache 2.0.58 on my home XP computer with no problem.
I'm now installing it on my work computer (XP with IIS 5.1), following the
procedure laid out in: http://wiki.phpgedview.net/en/index.php/How_to:Install_IIS_with_PHP_and_MySQL
I can run phpinfo.php ok. And a simple helloworld.php, run directly, also displays ok. But when I try a simple embedding, as below, the php code apparently is not getting parsed:
<html>
<head><title> Embedded Php </title></head>
<body>
<h2>Testing Embedded php </h2>
<?php
echo "Hello world!";
?>
</body>
</html>
Is there some install setting I have missed?
thanks,
harvey