Ver Mensaje Individual
  #3 (permalink)  
Antiguo 01/01/2007, 19:01
Avatar de BLAH !!
BLAH !!
 
Fecha de Ingreso: septiembre-2003
Ubicación: Región Metropolitana, Santiago, Chile
Mensajes: 706
Antigüedad: 20 años, 7 meses
Puntos: 16
De acuerdo Re: selección de option para la búsqueda...

claro ...

Código HTML:
<?
require("dbconnect.inc.php");

$qry = "SELECT id, titulo, cliente, fecha, RUN, html FROM archivos";
$res = mysql_query($qry);

while($fila = mysql_fetch_array($res))
{
print "<b><a name='$fila[titulo]'>Factura Nº:</a></b> &nbsp; &nbsp;$fila[titulo]
<br>
<b><a name='$fila[cliente]'>Cliente:</a></b> &nbsp; &nbsp; &nbsp; &nbsp; $fila[cliente]
<br>
<b><a name='$fila[RUN]'>RUT:</a></b> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$fila[RUN]
<br>
<b><a name='$fila[fecha]'>Fecha:</a></b> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $fila[fecha]
<form OnSubmit=\"return borrar()\" name='listas' action='borrar_archivo.php?id=$fila[id]' method='POST'>
 <input type='hidden' name='nfact' value='$fila[titulo]'>
 <input type='button' name='ver' value='Ver Archivo' OnClick=\"javascript: top.window.self.location.href='descargar_archivo.php?id=$fila[id]'\" style='color: #003366; background-color: #FFFFFF; font-family:verdana; font_size:xx-small'>&nbsp; &nbsp; 
 <input type='submit' name='delete' value='Borrar Archivo' style='color: #003366; background-color: #FFFFFF; font-family:verdana; font_size:xx-small'>
</form>
<br>
<br>";
}
?> 
__________________
Adios ...!!!!