
17/09/2012, 08:30
|
 | | | Fecha de Ingreso: julio-2011 Ubicación: Colombia
Mensajes: 54
Antigüedad: 13 años, 8 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 |