Hi,
This is certainly a stupid problem but it's driving me completly nuts.
I wrote an engine object with caching and stuff like that (using the singleton pattern) but each time I load the page, the class is reread ans the object is recreated !!!
I tried the simplest form of persistency with static global using
static $count;
if (!isset($count)) $count = 0;
$count++;
echo "count : $count";
but it always give me count=1 !!!
Is it normal ?
Is it a config problem either with php or apache (php as a module) ?
What's wrong ?
Thanks a lot for your help
Le Poulpe