This works:
-----------PrintInfo.php
<?php
phpinfo();
?>
--------------------------
But this doesn't:
-------------PrintInfo.html
<html>
<head>
<title> Hello World </title>
</head>
<body>
<?php
echo 'This is my first PHP web page.';
?>
</body>
</html>
-------------------------
I'm using Apache 2.0 on WinXP Home with php 5.
Thanks!