Ver Mensaje Individual
  #6 (permalink)  
Antiguo 07/10/2004, 11:26
Avatar de claudiovega
claudiovega
 
Fecha de Ingreso: octubre-2003
Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 20 años, 5 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.