|
Posted by william.clarke on 07/11/06 22:46
yawnmoth wrote:
> 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 ;)
Ah, I see. I don't habitually try to get parse errors...silly me, these
new trends in coding make me feel so old.
[Back to original message]
|