|
Posted by william.clarke on 11/01/01 11:52
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!';
?>
As for the errors messages, check each server's php.ini and see what
level of error reporting each is setup for.
Navigation:
[Reply to this message]
|