Now, behind the search button, we need to make a script that has this in it:
on (release, keyPress "") {
if(count){
count=count;
}else{
count=0;
}
c = 5;
text.newoutput = "";
loadVariablesNum ("http://bender.phpdeveloper.org/flash/flash.php?input="+input, 0, "POST");
if(count){
for (a=0; a<5; a++) {
this = "blah"+a;
that = eval(this);
newa=a+1;
text.newoutput = text.newoutput+newa+" - "+that+"\n\n";
}
number = count;
}else{
gotoAndPlay (4);
}
}
This script will take that search term you put in and send it off to the PHP script waiting on the server. In this
case, the address is "http://bender.phpdeveloper.org/flash/flash.php", and the extra part (="+input) will append the
search term to the end of it and pass it to the script. The for{} loop on this side gets the info back from the script (all of the "blah" variables) and puts them in the window, then puts the number that it got back in the "Results Found:" window.