Ver Mensaje Individual
  #1 (permalink)  
Antiguo 17/09/2012, 08:30
Avatar de Jorge1801
Jorge1801
 
Fecha de Ingreso: julio-2011
Ubicación: Colombia
Mensajes: 54
Antigüedad: 12 años, 10 meses
Puntos: 2
Extraer registros con PHP

Buen dia para todos.

Tengo una tabla en HTML.

<table>
<thead>
<tr>
<th>ID</th>
<th>Cedula</th>
<th>Nombre</th>
</tr>
</thead>
<tbody>
<tr>
<td><?php echo 1 ?></td>
<td><?php echo 123 ?></td>
<td><?php echo jorge ?></td>
</tr>
<tr>
<td><?php echo 2 ?></td>
<td><?php echo 124 ?></td>
<td><?php echo andres ?></td></tr>
</tbody>
</table>

Lo que quiero es extraer los registro con PHP.

Muchas gracias