Ver Mensaje Individual
  #4 (permalink)  
Antiguo 03/11/2008, 13:18
Avatar de TMeister
TMeister
Crazy Coder
 
Fecha de Ingreso: enero-2002
Ubicación: En la Oficina
Mensajes: 2.880
Antigüedad: 22 años, 3 meses
Puntos: 193
Respuesta: Cargar html de mysql desde Faslh

Primero en el link que se te dio dice asi:

Cita:
Nombre del archivo: elphp.php

<?
$laVariablePhp="aqui el contenido del archivo php que se mostrara en flash";
echo "laVariablePhp=".$laVariablePhp;
?>
y tu en el php solo tienes:

Cita:
echo "<strong>".$rowEmp['CAMPO1']."</strong><br>";
y en Flash estas refiriendote a la variable this.campo1

No estendemos???


Código PHP:
if ($totEmp0) {
     echo 
"campo1=";
     while (
$rowEmp mysql_fetch_assoc($resEmp)) {
        echo 
"<strong>".$rowEmp['CAMPO1']."</strong><br>";

    }

Para separar variables debes usar ?

Saludos!!