View Single Post
Old 05-18-2009, 05:35 AM   #14 (permalink)
TheOnly92
The Contributor
 
Join Date: Mar 2009
Posts: 49
Thanks: 0
TheOnly92 is on a distinguished road
Default

Ok, I have tested the sessions method and proved that it doesn't work. I created 2 files as below:

Code:
<?php
session_start();

set_time_limit(0);
for (;;) {
	$i++;
	$_SESSION['test'] = $i;
}
?>
This is the code that modifies the session variable. Another file to retrieve it here:
Code:
<?php
session_start();
var_dump($_SESSION['test']);
?>
Assuming it should work, I ran the first file, then wait a few seconds, and tried to access the second file. But the second file just kept loading and seems like it will never stop. Seems like it means its not applicable in my circumstances.

Any more ideas other than XML ?
TheOnly92 is offline  
Reply With Quote