Código PHP:
<table width="800" border="0">
<tr>
<td><?php
mysql_query("set names utf8");
$result = mysql_query("SELECT numero, fecha, glosa, abstracto, enlace FROM factura");
if ($row = mysql_fetch_array($result)){
echo "<table style = 'table' table border = '0,5'> \n";
echo "<tr><td>N Factura</td><td>Fecha</td><td>Detalle</td><td>Abstract</td><td>Descarga</td></tr> \n";
do {
echo "<tr><td>".$row["numero"]."</td><td>".$row["fecha"]."</td><td>".$row["glosa"]."</td><td><a href='".$row["abstracto"]."'>Descargar</a></td><td><a href='".$row["enlace"]."'>Descargar</a></td></tr> \n";
} while ($row = mysql_fetch_array($result));
echo "</table> \n";
} else {
echo "¡ No se ha encontrado ningún registro !";
}
?></td>
</tr>
</table>
si hay algun ink bueno con info de como hacerlo .. se los agradezco