Hi again, I think I have narrowed the problem down to this:
when this format is used..
<?php
include ("root.php");
$page_header = "Our Company Products";
include ("headertest.php");
?>
variables in both root.php and the $page title are passed.
However, when I include the IP address as follows, nothing gets passed:
<?php
include ("root.php");
$page_header = "Our Company Products include ("http://XXX.203.251.145/headertest.php");
?>
any ideas why that would be? I would really appreciate any help you can provide!