Ver Mensaje Individual
  #4 (permalink)  
Antiguo 07/06/2007, 03:53
tyrula
 
Fecha de Ingreso: mayo-2005
Ubicación: Castellón
Mensajes: 321
Antigüedad: 18 años, 11 meses
Puntos: 0
Re: Php + Flash tiempo real

envio_lv = new LoadVars();
recibir_lv = new LoadVars();
envio_lv.nombre = nombre_txt.text;
envio_lv.email = email_txt.text;
envio_lv.telefono = telefono_txt.text;
envio_lv.direccion = direccion_txt.text;
envio_lv.consulta = consulta_txt.text;
envio_lv.sendAndLoad("include/formulario.asp", recibir_lv, "POST");
recibir_lv.onLoad = function(exito) {
if (exito) {
estado_txt.text = recibir_lv.enviook;

} else {
estado_txt.text = aplicacionerr;
}
};