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