Hi, im loading text from mysql like this:
[AS]
_root.v = 0;
$lv = new loadVars();
$lv.load(“http://myserver.mine.nu/script.php?v=”+_root.v);
[/AS]
now tht code works fine, the text is loaded into the mc.
but when i write the like this it wont work:
[AS]
_root.v = 0;
myIdent = Math.round(Math.random()*10000);
$lv = new loadVars();
$lv.load(“http://myserver.mine.nu/script.php?v="+_root.v+"?uniq=”+myIdent);[/AS]
i dont want the text tht is loaded to be stored in the cache so im using tht myident thingie which was shown in one of the tutorials…but like said it wont load the text? =/
is there a way to solve this? :-\