Ver Mensaje Individual
  #4 (permalink)  
Antiguo 30/03/2009, 17:14
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 10 meses
Puntos: 2135
Respuesta: como modificar datos de una bd

Lo rescatas por POST, lee esto: http://www.php.net/variables.external

Un ejemplo crudo:
Código php:
Ver original
  1. <?php
  2. $nombre = $_POST['nombre'];
  3. $id = $_POST['id'];
  4. $sQuery = "UPDATE tabla SET nombre='$nombre' WHERE id=$id";

Saludos.