I have the following php file:
<html>
<body>
<?php
echo "test";
?>
</body>
</html>
My httpd.conf file has the following entry:
grep php /var/apache/conf/httpd.conf
LoadModule php5_module modules/libphp5.so
Why would the file always be downloaded and not loaded in the browser?
You also need to set the correct content handler / MIME-type for .php files. The default Ubuntu php configuration contains:-