Foros del Web » Creando para Internet » Flash y Actionscript »

Problema formulario as3 con registro y envio

Estas en el tema de Problema formulario as3 con registro y envio en el foro de Flash y Actionscript en Foros del Web. Hola pues aqui saludando a esta comunidad tan buena q me ah servido, pues queria comentar un problema q tengo: Necesito hacer un formulario de ...
  #1 (permalink)  
Antiguo 16/06/2009, 21:28
 
Fecha de Ingreso: junio-2009
Mensajes: 5
Antigüedad: 15 años, 7 meses
Puntos: 0
Problema formulario as3 con registro y envio

Hola pues aqui saludando a esta comunidad tan buena q me ah servido, pues queria comentar un problema q tengo:

Necesito hacer un formulario de registro para una rifa pero en este solo van los datos de Nombre
Email
Telefono
Grado de Estudios.
ya tengo el codigo de lo demas solo falta...
// Imports needed for radio button grouping
import fl.controls.RadioButton;
import fl.controls.RadioButtonGroup;

// hide processing CM
processing_mc.visible = false;

// custom function we create to populate the comboBox list
function addCountriesToList ():void {
gradoList.addItem( { label: "Primero Preparatoria" } );
gradoList.addItem( { label: "Segundo Preparatoria" } );
gradoList.addItem( { label: "Secundaria" } );
}

// Run function above now
addGroupsToList ();

// build variable name for the URL Variables loader
var variables:URLVariables = new URLVariables;

// Build the varSend variable
var varSend:URLRequest = new URLRequest("registro.php");
varSend.method = URLRequestMethod.POST;
varSend.data = variables;

// Build the varLoader variable
var varLoader:URLLoader = new URLLoader;
varLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
varLoader.addEventListener(Event.COMPLETE, completeHandler);

// handler for the PHP script completion and return of status
function completeHandler(event:Event):void {

// remove processing clip
processing_mc.visible = false;
txtNombre.text = "";
txtEmail.text = "";
txtTelefono.text = "";
checkBox.selected = false;

// Load the response from php here
status_txt.text = event.target.data.return_msg;
}

// Add event listener for submit button click
btnEnviar.addEventListener(MouseEvent.CLICK, ValidateAndSend);

// function ValidateAndSend
function ValidateAndSend (event:MouseEvent):void {

// validate fields
if(!name_txt.length) {
status_txt.text = "Ingresa tu Nombre";
} else if (!email_txt.length) {
status_txt.text = "Ingresa tu Email";
} else if (!msg_txt.length) {
status_txt.text = "Ingresa tu Telefono";
} else {

// All is good, send the data now to PHP
processing_mc.visible = true;

// ready the variables in our form for sending
variables.userName = txtNombre.text;
variables.userEmail = txtEmail.text;
variables.userMsg = txtTelefono.text;
variables.userCountry = gradoList.value;
variables.userNewsletter = checkBox.selected;

// Send the data to PHP now
varLoader.load(varSend);

} // close else condition for error handling

} // close validate and send function

Necesitaba q este al pulsar me genere un folio, pero que fuera unico ya que es para una rifa, y este mismo lo envie al correo del cliente y del usuario registrado.

Queria hacer una base de datos en phpmyadmin pero no me agarra el checkbox

Espero alguien pueda sacarme de esta duda creo que lo principal ya lo tengo solo falta el jalon de orejas jejeje, no se habria que pasarlo a PHP espero respuesta Saludos
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 04:01.