I am trying to display an index.php in a web browser. These are the contents of index.php:
<?php
echo "PHP Part";
?>
<html>
<h1> html part </h1>
</html>
This only prints out html part to the screen of the browser. Why isn't the php being displayed?
the page source looks like:
<?php
echo "PHP Part";
?>
<html>
<h1>html part</h1>
</html>