Ver Mensaje Individual
  #8 (permalink)  
Antiguo 25/02/2008, 19:36
Avatar de jaronu
jaronu
 
Fecha de Ingreso: febrero-2008
Mensajes: 2.183
Antigüedad: 16 años, 2 meses
Puntos: 52
Re: Los molesto de nuevo con esto...

igual puedes adaptarte este scripit

$qry = "SELECT nombre, titulo, tipo FROM archivos";
$res = mysql_query($qry);

while($fila = mysql_fetch_array($res))
{
echo "<table width=70%><tr bgcolor= #61e877><div align=center>";

echo "<b>Titulo: </b>";
echo $fila[titulo];
echo "</div></tr>";
echo"<tr>&nbsp;</tr>";
echo "<tr><b>Nombre: </b>";
echo $fila[nombre];
echo "</tr>";
echo"<tr>&nbsp;</tr>";
echo "<tr><div align=center><a href='descargar_archivo.php?id=$fila[id]'>Descargar</a></div>";
echo "</tr>";
echo"<tr>&nbsp;</tr>";
echo "<hr>" ;
echo "</table>" ;


}

?>