Hola!!!
Me estoy volviendo loco buscando y buscando y no consigo q me cargue la maldita variable en flash grrrrrrrrrrrrrrrrrr, necesito vuestra help!!!
- tengo este php (consulta.php) que funciona OK:
<?php
# Conectamos
$db = mysql_connect("server","user","pass");
$base = mysql_select_db("dreamanagementdba", $db);
# Consultamos
$sql = "SELECT * FROM tabla ORDER BY id";
$result = mysql_query($sql) or die (mysql_error());
$nrows = mysql_num_rows($result);
for ($i=0; $i < $nrows; $i++) {
$row = mysql_fetch_array($result);
$nombre = $row['nombre'];
echo $nombre;
}
?>
Y luego en flash (load.fla - load.swf ) tengo el primer frame con esto:
loadVariablesNum("consulta.php", 0, "GET");
estas son mis preguntas:
- Con esta línea de código en la película flash, ya me tendria q mostrar la variable nombre en flash?
- Es necesario que ponga un campo de texto? de ser afirmativo me podeis poner el codigo o simplemente un dymamic text con la variable nombre?
1000 Gracias!!