On Monday 2004-04-12 20:16, Patrick Fleming wrote:
> And depending upon the server you could probably get away with just the
> short tags like <? and ?>
But avoid the short tag version
<? ... ?>
<? ... ?> is XML for start application specific processing info.
Apache-2 will balk at the bare application processing start tag (unless the
page has declared a default application). It needs:
<?application_name
application instructions
?>
So with PHP
<p>
<?php
echo "Hello World"
?>
</p>
---------------------------------------------------
PLUG-discuss mailing list -
PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change you mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss