Hola a todos, soy nueva en esto y necesito su ayuda plis, se k ya se han contestado varios msjs d estos, pero esq por mas q le busco el error no puedo...
Haber kiero mandar unas variables de php a flash8, pero a la hora de mostrarlos m sale undefined, y no se pork =S... ste codigo ya lo habia utilizado antes y funcionaba muy bien, no se en k este fallando...
mi codigo php
<?php
$registros=mysql_query ("select no_expediente, id_pac,nombre,fecha_nac,direccion,sexo, tel_casa, tel_cel, ocupacion from pacientes where no_expediente='$_REQUEST[no_expe]'", $link) or die("problemas ".mysql_error());
if ( $reg=mysql_fetch_array($registros))
{
$consulta=mysql_query ("select no_expediente,tratamiento,fecha_inicio from expediente where no_expediente=".$reg['no_expediente']."", $link) or die("problemas ".mysql_error());
$cons=mysql_fetch_array($consulta);
$trata=$cons['tratamiento'];
$sqlcons=mysql_query ("select nombre from doctores where tratamiento='$trata'", $link) or die("problemas ".mysql_error());
$sql=mysql_fetch_array($sqlcons);
$id= $reg['id_pac'];
$nombre= $reg['nombre'];
$fecha_nac= $reg['fecha_nac'];
$direccion= $reg['direccion'];
$sexo= $reg['sexo'];
$tel_casa= $reg['tel_casa'];
$tel_cel= $reg['tel_cel'];
$ocupacion= $reg['ocupacion'];
$no_expe=$cons['no_expediente'];
$tratamiento=$cons['tratamiento'];
$fecha_inicio=$cons['fecha_inicio'];
$nombre_doc=$sql['nombre'];
}
else {
echo header("location: http://localhost/pass.php");
}
echo "&id=".$id;
echo "&nombre=".$nombre;
echo "&fecha_nac=".$fecha_nac;
echo "&direccion=".$direccion;
echo "&sexo=".$sexo;
echo "&tel_casa=".$tel_casa;
echo "&tel_cel=".$tel_cel;
echo "&ocupacion=".$ocupacion;
echo "&no_expe=".$no_expe;
echo "&tratamiento=".$tratamiento;
echo "&fecha_inicio=".$fecha_inicio;
echo "&nombre_doc=".$nombre_doc;
?>
mi codigo en flash
function datos2() {
enviar2 = new LoadVars();
enviar2.sendAndLoad("no_expe.php", enviar2, "POST");
enviar2.onLoad = function() {
id.text = this.id;
nombre.text = this.nombre;
fecha_nac.text = this.fecha_nac;
direccion.text = this.direccion;
sexo.text = this.sexo;
tel_casa.text = this.tel_casa;
tel_cel.text = this.tel_cel;
ocupacion.text = this.ocupacion;
no_expe.text = this.no_expe;
tratamiento.text = this.tratamiento;
fecha_inicio.text = this.fecha_inicio;
nombre_doc.text = this.nombre_doc;
};
}
datos2();
Plis q alguien m ayude =(... se los agradecere un monton.... =P