I have a webpage which uses sessions.
all the <head> data (and some of my layouts html) are stored in header.php
In the forum of my site i want the forum thread to show as title of the page. I use Javascript to get this done.
But, since not everybody allows javascript, the page title does not show to that person.
I have tried:
$title="welcome to the forum bla bla";
and then in the header.php:
<title><?php echo $title; ?></title>
but since i define the $title before the include ("header.php"); my sessions are not working..
Someone has an idea to get this done?