Why the server side behavior of LoadVars() not consistent?
In my server side script for FMS app,there is such code:
var lv = new LoadVars();
var params = new LoadVars();
...
lv.send("http://mysite.com/registerVideo.php", params, "POST");
The expected behavior is that the request will be as if sent directly from the browser,thus SESSION information is not lost ,which is the exact behavior for my computer.
But it's not the case for my boss --- session information is lost for him.
Why the server side behavior of LoadVars() not consistent?
What do I need to do to make sure session information is not lost @ server side ?
