necesito que me ayuden " o que me digan como buscar la solucion a mi requerimiento ya que no se por donde empezar"
tengo la siguiente php
Código PHP:
<div id="text">
<td>
<a class="texto"><br />
<form action="" method="post" class="login">
LISTA COMPLETA DE DOCUMENTOS EMITIDOS
<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 class='hovertable' table style = 'tabla' table border = '0,5'> \n";
echo "<tr><th width='70'>Fecha</th><th width='520'>Detalle</th><th width='70'>Abstract</th></tr> \n";
do {
echo "<tr onmouseover='this.style.backgroundColor='#ffff66';' onmouseout='this.style.backgroundColor='#d4e3e5';'><td>".$row["fecha"]."</td><td align='justify'>".$row["glosa"]."</td><td align='center'><a href='".$row["abstracto"]."'><img src='pdf.png'></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>
</form> <input type="button" value="Ir a Busqueda" onClick="history.back()" class="boton"/></a>
</div>