php not working as example in the book
Posted: Fri May 15, 2009 11:02 am
Per the example in the book this should say "Hello World"on my screen with the window being titled "PHP says hello"
For some reason the window is titled correctly but the php print of "Hello World" never shows. I have confirmed my php installation. The part that really gets me is this is like example 1. I guess its going to be a long road for me. Anyone have any ideas on why this is not working for me?
For some reason the window is titled correctly but the php print of "Hello World" never shows. I have confirmed my php installation. The part that really gets me is this is like example 1. I guess its going to be a long road for me. Anyone have any ideas on why this is not working for me?
Code: Select all
<html>
<head><title>PHP says hello</title></head>
<body>
<b>
<?php
print "Hello, World!";
?>
</b>
</body>
</html>