I am currently using AppServ to display my PHP code. I am having a problem of the content of the body not displaying however. Here is the code that I am using:
<html>
<head>
<title>My First PHP Page</title>
</head>
<body>
<?php
echo "Hello World!";
?>
</body>
</html>
When I try to view it in my browser, the title of the page is displaying, but the body is blank. I know very little about AppServ or PHP for that matter, and have no idea why I am getting these results. Anyone have ideas on what my problem is or why I am getting these results?