FormMail and checkBoxes AGAIN aarrrrgh

This is a discussion on "FormMail and checkBoxes AGAIN aarrrrgh" within the Flash & Multimedia Forum section. This forum, and the thread "FormMail and checkBoxes AGAIN aarrrrgh are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Flash & Multimedia Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Aug 22nd, 2007, 19:45
New Member
Join Date: Aug 2007
Location: Central Texas
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
FormMail and checkBoxes AGAIN aarrrrgh

I have spent days trying to resolve this issue and after reading the massive thread between dbthumb and the awesome kglad, I have at least managed to get a response back from the checkboxes but as follows

Below is the result of your feedback form. It was submitted by
(paul@zeecon.com) on Wednesday, August 22, 2007 at 14:42:25
---------------------------------------------------------------------------
Code: Select all
cbListener: [object Object]
 
lv: Please%20do%20not%20contact%20me%20about%20Skywater=Yes&Shopping=Yes&Fine%20Dining=Yes&Wine%20Tasting=Yes&Music%20Festivals=Yes&Tennis=Yes&Beach=Yes&Boating=Yes&Golf=Yes&%20I%E2%80%99m%20interested%20in%20learning%20more%2E%20Please%20contact%20me%20about%20the%20activities%20at%20and%20around%20Skywater%2E=Yes&%20Yes%2C%20I%20can%27t%20wait%20to%20see%20Skywater%21%20Please%20have%20someone%20contact%20me%3A=Yes
 
<html>
<head>
<title>Thank You</title>
</head>
<body>
<center>
<h1>Thank You For Filling Out This Form</h1>
</center>
Below is what you submitted to paul@avatarea.com on Wednesday, August 22, 2007 at 14:42:01<p><hr size: 1 width=75<p>
<p><hr size=1 width=75<p>
<hr size=1 width=75<p> 
<center><font size=-1>Web Page Design by <a href="http://www.megaiq.com">MegaIQ Website Architects</a>
 
daytime_phone: 123
 
evening_phone: 123
 
cb: Please do not contact me about Skywater
---------------------------------------------------------------------------

heres whats on my time line :-
Code: Select all
cbListener = new Object();
lv=new LoadVars();
cbListener.click = function(eo:Object) {
if (eo.target.selected) {
cb = eo.target.label;
lv[cb] = "Yes";
} else {
lv[cb] = "No";
}
};
Golf.addEventListener("click", cbListener);
Boating.addEventListener("click", cbListener);
Beach.addEventListener("click", cbListener);
Tennis.addEventListener("click", cbListener);
Music.addEventListener("click", cbListener);
Wine.addEventListener("click", cbListener);
Dining.addEventListener("click", cbListener);
Shopping.addEventListener("click", cbListener);
Contact_me.addEventListener("click", cbListener);
Activities.addEventListener("click", cbListener);
Dont_contact.addEventListener("click", cbListener);
and heres whats on my submit button:
Code: Select all
on (release) {
subject = "A new contact from offer1";
recipient = "paul@avatarea.com";
 
redirect = "www.nothing.com";
//calls the formMail script (on my server) write your own URL
loadVariables("http://www.avatarea.com/cgi-bin/formmail/FormMail.pl", "", "POST");
 
gotoAndStop("end");
}
the test page can be seen at http://www.avatarea.com/login
the FormMail.pl is residing and configured to work through that location and as you can see it is functioning.

Anyone PLEEEEASE Help I dont have enough hair to rip anymore out

Last edited by karinne; Aug 23rd, 2007 at 11:56. Reason: Please use [ code ]...[ /code ] tags when displaying code.
Reply With Quote

  #2 (permalink)  
Old Aug 23rd, 2007, 11:56
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: FormMail and checkBoxes AGAIN aarrrrgh

This is the Intro forum. Moving to Flash forum!

Last edited by karinne; Aug 23rd, 2007 at 12:25.
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Form to email script with checkboxes Posie PHP Forum 4 Dec 10th, 2007 03:54
Help with asp code for checkboxes speakma Classic ASP 1 May 22nd, 2007 11:17
Unchecking specified checkboxes in a table Geovanni Cesar JavaScript Forum 0 Mar 6th, 2007 08:22
How to get value of selected dynamic checkboxes? frmsasp ASP.NET Forum 1 Nov 3rd, 2005 12:59
repopulate checkboxes from database codefantom Classic ASP 1 Aug 29th, 2005 22:28


All times are GMT. The time now is 17:08.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43