Código PHP:
guardar_datos_cliente = function(){
lv = new LoadVars();
lv.lv_nombre = txt_nombre.text;
lv.lv_apellido = txt_apellido.text;
lv.lv_cliente = txt_cliente.text;
lv.lv_cargo = txt_cargo.text;
lv.lv_correo = txt_correo.text;
lbl_mensaje.text = "Guardando Datos ... !!!";
lv.sendAndLoad("guardar_datos_flash.php", lv, "POST");
lv.onLoad = function()
{
if (this.status == "ok")
{
lbl_mensaje.text = "El usuario fue registrado con exito2";
}
else
{
lbl_mensaje.text = "ERROR: No se pudo registrar al usuario";
}
}
};
Pido q me aclaren mis siguientes dudas, cuando quiero q una funcion se ejecute por varios botones donde debo de ponerla.
Espero me halla explicado bien. gracias.