So far Im successfully connected to my database and Im successfully registered,
but I want after pressing the " Register" button the users will preview his/her
profile, If anyone knows how to do it in AS2 kindly help please.
Here is my AS2 so far.
username = "";pass="";
fname = "";
lname ="";
country ="";
usernew.restrict = "a-zA-Z0-9";
passone.restrict = "a-zA-Z0-9";
passtwo.restrict = "a-zA-Z0-9";
Selection.setFocus(usernew);
firstname.restrict = "a-zA-Z0-9";
lastname.restrict = "a-zA-Z0-9";
regcountry.restrict = "a-zA-Z0-9";
stop()
And here is my "Register"button AS2
on (release) {
if(username.length >= 6 && pass.length >= 6){
loadVariablesNum("register.php", 0, "POST");
}else{
_root.words = "Username must have between 6 and 12 characters.";
}
}