Posted by yawnmoth on 07/11/06 17:37
william.clarke wrote:
> As several others have noted, your code has errors in it.
>
> This code is giving parse errors because you are missing a quotation
> mark ( ' ) and a semi-colon to end the statement.
>
> <?php
> echo 'hello, world!
> ?>
>
> as posted by others try this instead:
>
> <?php
> echo 'hello, world!';
> ?>
When you're _trying_ to get parse errors, using syntactically correct
code isn't such a great idea ;)
[Back to original message]
|