Hi.
I'm on the first pages of "beginning PHP..." and in chapter 1 page 17 I shall make a test of PHP :
<HTML>
<HEAD>
<TITLE>PHP Testing</TITLE>
</HEAD>
<BODY>
<?php
echo âIf this works, we <i>really</i> did it!â;
?>
</BODY>
</HTML>
But when I go to
http://localhost/phptest.php it gives me this error message:
Parse error: parse error, unexpected T_STRING, expecting ',' or ';' in
C:\Programmer\Apache Group\Apache2\test\phptest.php on line 7
Can someone tell me what i've done wrong?
Kurt