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 ($totEmp> 0) {
echo "campo1=";
while ($rowEmp = mysql_fetch_assoc($resEmp)) {
echo "<strong>".$rowEmp['CAMPO1']."</strong><br>";
}
}
Para separar variables debes usar ?
Saludos!!