07/10/2004, 11:26
|
| | | 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. |