If I make a standalone script, it works. (example www.mywebserver.com/test.php). when it is embed it in a html file, I get no output, and calling it remotely does not work either. please help this beginner figure out what I am doing wrong.
<!DOCTYPE html>
<html>
<head>
<title>PHP! </title>
</head>
<body>
<?php
echo "test";
?>
</body>
</html>