Hi there,
i have a header.php file, and a footer.php file. Both of which use sessions and mysql queries. However, when i come to inserting content.php inbetween the two files (which also uses the same sessions) like this;
include("header.php");
include("content.php");
include("footer.php");
it seems to bring up an error about session cache. Anyone know how to stop it doing this?
Its hard to explain...
Jonathan