Hello (again)
Suddenly I have to build a small and o-so-simple Flash Movie. What have I started…
This is the code (and it works just fine) BUT NOT IN IE:
function showContent() {
//handling loadvars
_root.args = “”;
for (i in this){
_root.args += i + " = " + this* + “<br>”;
}
}
stuur = new LoadVars();
stuur.ALIAS = _root.nm;
ontvang = new LoadVars();
ontvang.onLoad = showContent;
stuur.sendAndLoad(“script.php”, ontvang, “POST”);
The PHP-script simply sais:
echo ("&var1=bladibla&var2=grrr");
or
printf ("&var1=bladibla&var2=grrr");
As I said it works just fine in Mozilla en FireFox, but IE does not seem to get any variables back from the php-script - the sending goes fine. This may be caused bij the php-session, but that session is inevitable in the scripts.
So, how do I make sure that also IE receives the variables
Thanks en ragards,
Victor