I'm trying to learn PHP through codecademy.org and I can't understand why the following code, when saved in as helloworld.php, returns no text. I tried in Internet Explorer and in FireFox, but nothing. I also opened the .php file in notepad and it looks fine, uncorrupted. What's going on here? I followed codecademy's instructions exactly, and the code works in the codecademy previewer. Code:
<html>
<head>
<title>Hello World</title>
</head>
<body>
<p><?php echo "Hello World!"; ?></p>
</body>
</html>