25/02/2008, 19:36
|
| | | Fecha de Ingreso: febrero-2008
Mensajes: 2.183
Antigüedad: 16 años, 8 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> </tr>";
echo "<tr><b>Nombre: </b>";
echo $fila[nombre];
echo "</tr>";
echo"<tr> </tr>";
echo "<tr><div align=center><a href='descargar_archivo.php?id=$fila[id]'>Descargar</a></div>";
echo "</tr>";
echo"<tr> </tr>";
echo "<hr>" ;
echo "</table>" ;
}
?> |