Mike,

i had no problems with this..


<!-- index.php -->
<?
     include('Functions.inc');

     HtmlHeader();
?>
     # Do things
<?
     HtmlFooter();

 ?>


<!-- Functions.inc-->
<?
function HtmlHeader()
 {
     ?>

         <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
         <html><head>
         <meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
         <title>LogBook</title>
         </head>

         <body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
vlink="#000080" alink="#FF0000">

     <?

     return;
 }
?>
<?
 function HtmlFooter()
 {
     ?>
     </body> </html>

     <?

     return;
 }

cheers
Peter


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to