Okay, so I'm trying to make a contact form with the following fields:
Name:
Last Name:
Zip Code:
Phone-Number:
Email:
Confirm Email:
Message or Inquiry:
Unfortunately, when I tried it, it didn't do anything. Not even change the dynamic text. What am I doing wrong? Heres the script:
on (release) {
if (name_field eq "" or message_field eq "" or email eq "" or email.text != confirm_email.text or phone_number.length < 10 ) {
status_field = "Something is blank, E-mail does not match or phonenumber is not long enough. Please check and confirm.";
stop();
} else {
form.loadVariables("email.php", "POST");
status_field = "Sent Succesfully!"
}
}
Please help!!


Reply With Quote


Bookmarks