SO i create the most basic php code possible:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<?php
echo "hello";
?>
</body>
</html>
I wrote this in notepad and saved it with a .php extension. However I am having an issue where when I open it up with chrome/firefox, it is displaying the code, and not the "hello" from the echo statement. Any idea why this may be happening?