I've downloaded and installed php v5 on to a Windows 2000 pc with IIS as the web server. If I run the following
<?php
phpinfo();
?>
in c:\inetpub\wwwroot it returns all the configuration data.
but if I run the following:
<html>
<head>
<title>Billy's Auto Parts - Order results</title>
</head>
<body>
<h1> Billy's Auto Parts</h1>
<h2>Order results</h2>
<?php
echo '<p>order 2 processed</p>' ;
?>
</body>
</html>
the echo shows nothing in IE6 and shows
order 2 processed
' ; ?>
in Mozilla. I have tried changing <?php ?> to <script language="php"></script> but get no echo in IE6 or Mozilla.
I can't believe I'm stuck at what is essentially "hello world".
I've tried changing the single quotes after echo to doubles but the results are the same (except Mozilla now shows the closing double quote).
Help, please
Cheers
Billy