URGENT: CGI user input email form

Hi there,

I have exhausted so many options to try and get a generice form to email working in Flash 5 and can’t seem to do it. I have created all of my Input Text fields and given them variables and have put the following code on the submit button… but it still doesn’t work… in fact none of the several ones I found on the web worked either. Please help quick!

Submit button code:

on (release) {
loadVariablesNum (“http://cgi.domainname.co.nz/cgi-bin/email.cgi”, 0, “POST”);
subject = “Enquiry from Website”;
recipient = "email@mydomain.com";
gotoAndPlay (“thankyou”);
}

Thanks in advance

well i don’t know any cgi but it seems that you are definaing who the email goes to in your flash code, you can do that but maybe try defining it it the cgi, just a thought

tru putting the recepient and subject lines before the loadVariablesNum() line!
and if that doesn’t work try

loadVariablesNum (“http://cgi.domainname.co.nz/cgi-bin/email.cgi?subject=Enquiry from Website&recipient=email@mydomain.com”, 0, “POST”);