Thank you for the info. Can I seperate out the PHP fields such as the following?
<?PHP
include("header.php");
?>
This is my body of the page....
<?PHP
include("footer.php");
?>
and a 3rd one for a form like:
<?PHP
include("header.php");
?>
This is my body of the page....
<?PHP
this is the form script...
?>
More text here...
<?PHP
include("footer.php");
?>
Thank You.