having some issues getting PHP working and it's really frustrating.
I installed PHP from here: http://php-osx.liip.ch/
I have read and reviewed all of the tips/troubleshooting here: PHP code is not being executed, instead code shows on the page
I have: uncommented the LoadModule for php
I have: added the command/line that makes files saved as .php be interpreted as php
I have: restarted apache, stopped and started apache
When I go to localhost/test.php I see the raw source code from my php file:
<!doctype html>
<html>
<head>
<title> PHP Test </title>
</head>
<body>
<p>This is an HTML line. </p>
<?php echo “<p> This is a PHP line</p>”;
phpinfo();
?>
</body>
</html>
Any guidance appreciated!