Ver Mensaje Individual
  #22 (permalink)  
Antiguo 19/03/2009, 14:13
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: Un buen ejemplo

Creo es muy amplio lo que pides, pero si sabes HTML puedes armar una tabla sencilla por ejemplo:
Código html:
Ver original
  1.        <tbody>
  2.                 <tr>
  3.                        <th>Nombre</th>
  4.                        <th>Apellido</th>
  5.                        <th colspan="2">Operaciones</th>
  6.                 </tr>
  7.                 <tr>
  8.                         <td>Sutano</td>
  9.                         <td>Fulano</td>
  10.                         <td><a href="modificar.php?id=1">Modificar</a></td>
  11.                         <td><a href="borrar.php?id=1">Borrar</a></td>
  12.                  </tr>
  13.                 <tr>
  14.                         <td>Sutano 2</td>
  15.                         <td>Fulano 2</td>
  16.                         <td><a href="modificar.php?id=2">Modificar</a></td>
  17.                         <td><a href="borrar.php?id=2">Borrar</a></td>
  18.                  </tr>
  19.        </tbody>

Con eso tienes una tabla, rescatas el valor en modificar.php o en borrar.php y haces la operacion necesaria.

Saludos.