Hi,
I guess some software was playing tricks on you, abd the code should just be
loadVariables("
http://localhost/omrarchdb/projects.php?id="+_level0.id, this,, "GET")
loadVariables("tempInput.txt", this);
May I suggest to show the full code - Ithe use of a tempinput.txt suggests that there might be errors in the code...
The first call sends all your current vars (those in the timeline where you have put the code) as well as the id variable and might get some variables from the php in return
A simultaneous call asks the server to send the text file. If the purpose of the php is writing the text file, you are gambling with server timing - the text file may be delivered before the php writes it, or the other way round.
Muicman