Ver Mensaje Individual
  #4 (permalink)  
Antiguo 10/06/2013, 05:05
amin_ibz
 
Fecha de Ingreso: mayo-2013
Mensajes: 7
Antigüedad: 11 años
Puntos: 1
Respuesta: Hacer Mostrar un datos de una tabla

SELECT director, title
echo $row[1]
## si no prueba declarandolas
Código PHP:
Ver original
  1. while($row = mysql_fetch_array($peliculas))
  2. {
  3. $title=$row['title'];
  4. echo $title;

## sigo sin entender porque abres y cierras tanto el php pudiendo abrirlo al principio y cerrarlo alfinal solo ;)