Hi,
I just downloaded PHP and successfully installed it in my computer. However, I'm having problems opening a PHP file (basic HTML page with a PHP script embedded in it printing hello) through a browser - fails to execute the script. I think I'm missing something here or doing something wrong since I can run the file through the command prompt...
Here's the file:
<html>
<body>
<?php
echo "Hello World";
?>
</body>
</html>
Thanks!