<?
require('dbconection.php');
$id_producto = $_GET['id_producto'];
$id_ses = $_GET['id_ses'];
$borrar = mysql_query("DELETE FROM don_carrito_temp WHERE id_ses='$id_ses' AND id_producto='$id_producto'");
if ($borrar){
header("location: index.php?id_ses=$id_ses");
}
?>
and after I call it.. it shows me this:
"
CGI Error
The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are:
"
any ideas why is not working??