Forum Moderators: coopster
includes(). I have the following in .htaccess to prepend the header file:
<IfModule mod_php4.c>
php_value auto_prepend_file "/path/to/top.php"
</IfModule> Example of contents of top.php:
<html><head><title><? print("$_POST[t]");?></title>(stylesheet, etc.)</head><body>(logo and stuff) Example contents of a-test-page.php:
<? $t='page title';?>
When I run a-test-page.php, the title is blank. I've tried troubleshooting
$_POST in various ways, all either result in no title or parse error. Any suggestions?