Comunidad de diseño web y desarrollo en internet online

Formulario Flash + php

Citar            
MensajeEscrito el 25 Nov 2008 12:31 pm
Hola a todos!!!
Tengo un problema con flash y php. Estoy haciendo un formulario de reservas en el que aparte de los campos de texto input, tengo un "combobox" el cual no sé programar bien ni en el flash ni en el PHP. El nombre del combobox es "asunto"
Dejo aquí el código, por si alguien puede ayudarme.

Código flash:

on (rollOver) {
gotoAndPlay("t1");

}
on (rollOut, releaseOutside) {
gotoAndPlay("t2");

}

on (release) {
// send variables in form movieclip (the textfields)
// to email PHP page which will send the mail
_parent.form.loadVariables("correo.php","POST");
_parent.form.nombreyapellidos = "";
_parent.form.direccion = "";
_parent.form.telefono = "";
_parent.form.email = "";
_parent.form.numero = "";
_parent.form.fecha = "";
_parent.form.espectaculo = false;
_parent.form.asunto.value;
}

Código del PHP:

<?php
/***************************************************\
* PHP 4.1.0+ version of email script. For more
* information on the mail() function for PHP, see
* http://www.php.net/manual/en/function.mail.php
\***************************************************/


// First, set up some variables to serve you in
// getting an email. This includes the email this is
// sent to (yours) and what the subject of this email
// should be. It's a good idea to choose your own
// subject instead of allowing the user to. This will
// help prevent spam filters from snatching this email
// out from under your nose when something unusual is put.

$sendTo = "[email protected]";
$subject = "Reserva";

// variables are sent to this PHP page through
// the POST method. $_POST is a global associative array
// of variables passed through this method. From that, we
// can get the values sent to this page from Flash and
// assign them to appropriate variables which can be used
// in the PHP mail() function.


// header information not including sendTo and Subject
// these all go in one variable. First, include From:
$headers = "From: " . $_POST["firstName"] ." ". $_POST["lastname"] . "<" . $_POST["email"] .">\r\n";
// next include a replyto
$headers .= "Reply-To: " . $_POST["email"] . "\r\n";
// often email servers won't allow emails to be sent to
// domains other than their own. The return path here will
// often lift that restriction so, for instance, you could send
// email to a hotmail account. (hosting provider settings may vary)
// technically bounced email is supposed to go to the return-path email
$headers .= "Return-path: " . $_POST["email"];

// now we can add the content of the message to a body variable
$message = "Nombre y apellidos:" . $_POST["nombreyapellidos"] . "\r\n";
$message .= "Direccion:" . $_POST["direccion"]. "\r\n";
$message .= "Teléfono:" . $_POST["telefono"] . "\r\n";
$message .= "E-mail:" . $_POST["email"] . "\r\n";
$message .= "Número de personas:" . $_POST["numero"] . "\r\n";
$message .= "Fecha de reserva:" . $_POST["fecha"] . "\r\n";
$message .= "Espectáculo:" . $_POST["asunto"] . "\r\n";

// once the variables have been defined, they can be included
// in the mail function call which will send you an email
mail($sendTo, $subject, $message, $headers);

Gracias de antemano.

Por reiniciar

0 de clabLevel



 

firefox
Citar            
MensajeEscrito el 25 Nov 2008 04:46 pm
El valor del combo lo capturas en el evento change, ya sea que te interese el data o el label (mira Combobox.change en la ayuda)
Luego lo copias al LoadVars como todo el resto de las variables, si por ejemplo le pones "dia", en PHP lo capturas como $_POST['dia']

Jorge

Por solisarg

BOFH

13669 de clabLevel

4 tutoriales
5 articulos

Genero:Masculino   Bastard Operators From Hell Premio_Secretos

Argentina

firefox

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.