function SetPageAuthor() seems to be missing a }
:)
Justin French
on 30/04/02 3:19 PM, Ironfroggy ([EMAIL PROTECTED]) wrote:
> <?php
>
> /* Standard Globals */
> $GLOBALS["PageTitle"] = "ironfroggy.com";
> $GLOBALS["SiteName"] = "www.ironfroggy.com";
> $GLOBALS["STD_PHP_Version"] = "1.0";
> $GLOBALS["PageAuthor"] = "ironfroggy";
>
> function PageAuthor() {
> echo $GLOBALS["PageAuthor"];
> }
>
> function SetPageAuthor($name) {
> $GLOBALS["PageAuthor"] = $name;
>
> function PageTitle() {
> echo $GLOBALS["PageTitle"];
> }
>
> function SetPageTitle($title) {
> $GLOBALS["PageTitle"] = $title;
> }
>
> /* Header/Footer functions */
>
> function header_xhtml1() {
> /* XHTML CODE FOLLOWS */
> echo "<?xml version=\"1.0\"?>";
> ?>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php