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.