Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/03/2012, 13:56
leonagelic
Usuario no validado
 
Fecha de Ingreso: enero-2010
Ubicación: Maturín, Monagas
Mensajes: 190
Antigüedad: 14 años, 10 meses
Puntos: 24
Respuesta: busqueda de informacion en un campo

esta desordenado pero es algo asi asumo tienes tu conexion:

Código PHP:
Ver original
  1. $result=mysql_query("SELECT * FROM articulo ORDER BY nro_id asc");
  2.     ?><br />
  3.    
  4.     <table cellspacing="0" cellpadding="3" class="tablesorter">
  5.  
  6.         <thead>
  7.  
  8.                 <tr>
  9.                 <th >Codigo: </th>  
  10. <th >cantidad: </th>  
  11. <th >Nombre: </th>  
  12.  <th >Caracteristicas:</th>
  13.      <th >Monto:</th>
  14.      <th >Incorporado:</th>  
  15. <th >Operaciones</th>
  16.                 </tr>
  17.  
  18.             </thead>
  19.  
  20.             <tbody>
  21.            
  22.     <?php
  23. while($row=mysql_fetch_row($result))
  24.  
  25. {
  26.            
  27. echo "
  28.                 <tr style=border1px solid #ffffff>
  29. <th >$row[0]</th>
  30.  
  31.                         <th >$row[1]</th>
  32.  <th >$row[5]</th>
  33.    <th style=background-color: #ffffff;  > <a href=detalles.php?id=$row[0] title=detalles>$row[2]</a></th>
  34.            <th >$row[4] </th>
  35.            <th >$row[7] </th>
  36.  
  37. echo "
  38.                 </tr>";
  39.                
  40.                 }
  41.                 ?>
  42.  
  43.             </tbody>
  44.  
  45.         </table>