Comunidad de diseño web y desarrollo en internet online

Ayuda para cargar variables de PHP a Flash

Citar            
MensajeEscrito el 27 May 2014 06:14 pm
Estimados usuarios del foro porfavor su ayuda necesito pasar mas de una variable a flash desde php tengo este codigo de php

<?php
$link=mysql_connect("localhost","root","xxxxx");
mysql_select_db("users",$link);
$usu=$_POST['u'];
$pas=$_POST['p'];

$re=mysql_query("select * from tb_usuario where usu_usu='$usu' and pas_usu='$pas'");
$num=mysql_num_rows($re);
$f=mysql_fetch_array($re);
if($num==1)
{
echo "&nom_usu=nom_usu&ok=".$f['usu_usu'];
}
else
{
echo "&ok=error";
}
mysql_close($link);
?>

y tengo este codigo en flash

stop();
iniciar.onRelease=function()
{
usu=usu_txt.text;
pas=pas_txt.text;

if(usu=="" or pas=="")
{
msj.text="Algun campo esta vacio llenelo por favor";
}
else
{
var f:LoadVars = new LoadVars();
f.u=usu;
f.p=pas;

//hacemos la comprobacion en la base
f.sendAndLoad("comprobar.php",f, "POST");
//recibimos la respuesta de php

f.onLoad = function()
{
if(f.ok!="error"){
_global.usuario=f.ok;
//quiero pasar otra variable como ser nom_usu
gotoAndStop(2);
}else{
msj.text="usuario o password incorrecto";
}
}
}
}
registrar.onRelease=function()
{
gotoAndStop("registro");
}
stopAllSounds ();

agradezco su ayuda,

Por oscarmhn

1 de clabLevel



 

chrome
Citar            
MensajeEscrito el 27 May 2014 09:12 pm
solucionado gracias amigos

Por oscarmhn

1 de clabLevel



 

chrome

 

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