I'm learning web development and embedding PHP into the website. In running a basic HTML script like this:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<?php
echo "Hello World";
?>
</body>
</html>
the Hello World, does not show in the browser. What am I doing wrong?