![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
07/10/2004, 11:26
|
![Avatar de claudiovega](http://static.forosdelweb.com/customavatars/avatar44992_1.gif) | | | Fecha de Ingreso: octubre-2003 Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 21 años, 3 meses Puntos: 11 | |
entonces no tienes register_globals=Off en php.ini. Si es asi (no tienes register_globals=Off en php.ini, sin en On), debes recibir las variables asi:
procesa.php
<?php
if(isset($borrar))
{
delete from tabla where .....
header("location: formulario.html")
exit();
}
if(isset($modificar))
{
update tabla where .....
header("location: formulario.html")
exit();
}
?>
comprueba eso. |