Ver Mensaje Individual
  #12 (permalink)  
Antiguo 03/10/2010, 14:41
Avatar de egepe
egepe
 
Fecha de Ingreso: diciembre-2009
Mensajes: 310
Antigüedad: 14 años, 4 meses
Puntos: 7
Respuesta: problemas con echo en una tabla

te faltó cerrarlo
while ($fila=mysql_fetch_array($respuesta))
{?> debes cerrarlo para que lea el html
<tr>
<td><?php echo $fila["id_beca"]?></td>
<td><?php echo $fila["id_pais"]?></td>
<td><?php echo $fila["nombre"]?></td>
<td><?php echo $fila["tipo"]?></td>
<td><?php echo $fila["descripcion"]?></td>
<td><div id="scrollable"><?php echo $fila["requisitos"] ?></div></td>
<td><?php echo $fila["link"]?></td>
</tr>

<?php y debes volver a php para que te lea la llave
}

Saludos Pike