I have error in this script, please help. A have two imput text field. test and test2.
on (release) {
loadVariablesNum ("pokus.php?text="+test"&text2="+test2, 0, "POST");
}
Printable View
I have error in this script, please help. A have two imput text field. test and test2.
on (release) {
loadVariablesNum ("pokus.php?text="+test"&text2="+test2, 0, "POST");
}
try this:
on (release) {
loadVariablesNum ("pokus.php?text="+test+"&text2="+test2, 0, "POST");
}
you missed a "+" hope that helps!
Quote:
Originally posted by FlashGuru
try this:
on (release) {
loadVariablesNum ("pokus.php?text="+test+"&text2="+test2, 0, "POST");
}
you missed a "+" hope that helps!
Thanx