Ask a Question related to Macromedia Flash Data Integration, Design and Development.
-
r.frolich #1
Contact form with DateField
I hope someone can help me with this because I can't get it to work myself. I
have created an contact form with Flash and in this form there is a Datefield
and I want the value of this Datefield to be send to my email by php. I can't
figure it out how I can set the selected date to an variable which can be send
by php, perhaps someone can me? (the rest of the contact form works fine)
Thanks in advance,
Remco
r.frolich Guest
-
contact form
Can anyone help me. I have a contact form on my site it works ok when anyone submits the form and the confirmation page opens ok. The prob I have... -
Flash Contact Us Form
Hey Everyone, I need to get a contact us form in a flash site to send an email to me when someone submits it. I bought a template... -
How to capture data from a contact form
Thus far I've learned how to create a contact form with fields for name, e-mail, phone number, and comments to include a button for send and a... -
Contact Us Form
Can somebody please give me a simple script for a form that is going to be sent to design@netzed.co.uk. Has a text field for contact name, email... -
PHP and contact form
I'm a virgin at PHP, so go easy. :) I have a contact form and a separate PHP script that I'm attempting to author. I have no problem with it... -
LogicTrap #2
Re: Contact form with DateField
To assign the current date to field use the snippet below:
var today_date:Date = new Date();
var date_str:String =
(today_date.getDate()+"/"+(today_date.getMonth()+1)+"/"+today_date.getFullYear()
);
mydatefield.text=date_str; // assign the date to a field
LogicTrap Guest
-
r.frolich #3
Re: Contact form with DateField
Okay, this allows me to send the current date with php to my email but what I
really want is that someone should be able to change the date with the
Datefield and that the selected date will be send.
Thanks again,
Remco
r.frolich Guest
-
LogicTrap #4
Re: Contact form with DateField
I think you just need to assign the date value to the variable you are sending
to flash. If the date field is named:
mydatefield
then it can be assigned to a variable this way:
myphpvar = mydatefield.selectedDate;
LogicTrap Guest



Reply With Quote

