Thanks for your reply.
It is in fact 100% flash. Anyway I have found a way around it.
Regarding the drop down boxes, I am new to flash and I did not really understand the link you gave. The details I have are below..I would be grateful if you could tell me what is wrong.
I have a name, email, phone number, number of adults, number of children, message and 6 combo boxes. Everything is working except the 6 combo boxes.
This is the code for the submit button:
PHP Code:
on (release) {
_parent.getURL("booking.php","_blank","GET");
_parent.name="Your Name";
_parent.email="Your Email";
_parent.phone="Your Phone";
_parent.box1text="Arrival Date";
_parent.numadults="Num. of Adults";
_parent.numchildren="Num. of Children";
_parent.box1.getSelectedItem().data
_parent.box2.getSelectedItem().data
_parent.box3.getSelectedItem().data
_parent.box4.getSelectedItem().data
_parent.box5.getSelectedItem().data
_parent.box6.getSelectedItem().data
}
And this is part of the bit for the php:
PHP Code:
$box1 = $_GET['box1'];
$box2 = $_GET['box2'];
$box3 = $_GET['box3'];
$box4 = $_GET['box4'];
$box5 = $_GET['box5'];
$box6 = $_GET['box6'];
I would be very grateful if you could help as I have been trying to get this working for a few weeks now.
Bookmarks