I'm just trying to echo a string to the browswer with the following code:
<!DOCTYPE html>
<html>
<body>
<h1>Hello World!</h1>
<?php
echo "My first PHP script!";
?>
</body>
</html>
but it doesn't show up in the browswer. The "Hello world!" header shows up but not the php statement. I know it must be something very simple. Could someone help me out?