someone plz guide
the code given by form buddy is
the form i made in flash with same files and the code in it i used is
but then using this above code in flash gives me syntax error at the
[U][I]i get error that visitor name ( entered by the visitor ) doesn't exist on the server. how do i get it to work
the code given by form buddy is
Code:
<form action="http://www.formbuddy.com/cgi-bin/form.pl" method="post"> <input type="hidden" name="username" value="myformbuddyusername"> <input type="hidden" name="reqd" value="0"> <input type="hidden" name="url" value="mysiteaddress"> <table border="0"> <tr> <td align="right"><b>Name:</b> <td><input type="text" name="visitor_name" size="36" maxlength="100"> </tr> <tr> <td align="right"><b>E-Mail:</b> <td><input type="text" name="e-mail" size="36" maxlength="100"> </tr> </table> <p><b>Comments/Suggestions</b> <br><textarea name="comments" rows="5" cols="36"> </textarea> <p><input type="submit" value="Submit Form"><input type="reset" value="Reset Form"> </form>
Code:
Name.tabIndex = 1; Email.tabIndex = 2; Message.tabIndex = 3; var senderLoad:LoadVars = new LoadVars(); sender.onRelease = function() { var username="myformbuddyusername"; var url= "mysiteaddress"; senderLoad.visitor_name = Name.text; senderLoad.e-mail = Email.text; senderLoad.Message = Message.text; senderLoad.send("http://www.formbuddy.com/cgi-bin/form.pl", "_self", "POST"); }
[U][I]i get error that visitor name ( entered by the visitor ) doesn't exist on the server. how do i get it to work