I'm not sure this will work at all, but its worth a try 
Set your Header to parse php code (in general options), then put this in the header template:
Code:
$header = implode('', file(http://mydomain.com/includes/whatever.cgi'));
You will also need to put the rest of the header code in that variable, eg:
Code:
$header = "<b>this is the header</b>" . implode('', file('http://www.mydomain.com/includes/whatever.cgi')) . "more of the header";
As I said before, this probably won't work but I think its worth a try
I know implode works with PHP files but have no idea for CGI files.
<Edited by James on 01-21-2001 at 03:35 PM>
Bookmarks