I am just starting to learn PHP and I don't quite understand why it doesn't work.
I am trying a simple echo statement but nothing shows up when I open it in Chrome.
<html>
<head>
<title>Test</title>
</head>
<body>
<p>
<?php
echo "hello";
?>
</p>
</body>
</html>
Is this not how you test out PHP? Really confused, any help is appreciated.