Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/01/2010, 04:29
marinesky
 
Fecha de Ingreso: diciembre-2009
Ubicación: entre Ibiza y Barcelona :)
Mensajes: 92
Antigüedad: 14 años, 4 meses
Puntos: 3
Respuesta: No puedo sacar datos de la tabla

Prueba esto:

Código PHP:
$comprobar=mysql_query("SELECT fichero FROM informe",$conexion); 

$resultado=mysql_query($comprobar);

while (
$row mysql_fetch_array($resultado))
 {
     echo 
"Fichero: ".$row['fichero']."<br>"

 }
    echo 
mysql_error(); 
Espero que te sirva.