Re: database (now "MySQL/PHP")

Top Page
Attachments:
Message as email
+ (text/plain)
Delete this message
Reply to this message
Author: Trent Shipley
Date:  
To: plug-discuss
Subject: Re: database (now "MySQL/PHP")
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 -
To subscribe, unsubscribe, or to change you mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss