menu.php
========
Code: Select all
<?php
$strMenu='some table';
if(isset($PHPSESSID))
$strMenu.='<td>logout</td>';
else
$strMenu.='<td>login</td>';
return $strMenu;
?>But unfortunately the menu is loaded only once for each page which it looks into the cache to retieve the menu.php.
If I refresh the page the correct menu items get displayed.
My sessions etc are working OK.
I just need to get this fixed. (Perhaps an automatic refresh ? But that'll load all the images all over again.)
Thanks