I'll try this again, it's important that I get my server to work correctly on this.
I have a file which is basically this code:
echo time() . "<br>";
flush();
for($i=1;$i<=1500000;$i++){
//do nothing, this is just to run the clock
}
echo time() . "<br><br>";
I call the page in my browser in 4 separate windows, at about the same time. What I have found is that the end timestamp the first window I open is basically the start timestamp of the next window, and so on.
So, my system is refusing to run more than one page at a time. Seems linux/apache/php could do better than this. Does anyone out there know the answer to this? It's worth money to me to find out ($20-30.00 easily!) thanks.
Sam