Ver Mensaje Individual
  #7 (permalink)  
Antiguo 25/09/2006, 14:50
guiweb
 
Fecha de Ingreso: septiembre-2004
Ubicación: Santiago de Chile
Mensajes: 156
Antigüedad: 19 años, 6 meses
Puntos: 0
ese es el error... select * from articulo where codigo='$_POST[clave]' cuando pasas variables del tipo ...index.php?id=123 ese 123 viaja por el metodo GET.. por lo tanto cambia su sentencia SQL...select * from articulo where codigo= $_GET[clave].

Saludos