Error in page33!!
<HTML>
<HEAD>
<TITLE>MY FIRST PHP PROGRAM</TITLE>
</HEAD>
<BODY>
<?PHP
ECHO "I'M A LUMBERJACK.";
?>
</BODY>
</HTML>
The above program when run in my Firefox browser shows no output.Only a title "My First PHP Program" is appearing in the title bar.
The source code is listed in page33 of the Book called - "Beginning PHP5,Apache,MySQL Web Development" by E. Naramore,J. Gerner,Stolz,M.Glass,Yann Le(Wrox Publication).
I have WAMP5(latest) installed.
What to do to see the output?
Are there errors in the code above?
|