[left]Hi,[/left]
I need to display vars from PHP file continuously, without opening/running PHP file, I have the following script :
Display = function () {
loadText = new LoadVars();
loadText.load("data.txt");
loadText.onLoad = function() {
MKA01CE901XQ01.text = this.MKA01CE901XQ01;
};
clearTimeout(ID);
};
ID = setInterval(Display, 2000);
My problem is, the data is only updated on swf when PHP is opened.
Is there any missing scripts ?
Thanks
Sule