-
Notifications
You must be signed in to change notification settings - Fork 1
/
delete.php
36 lines (32 loc) · 1.35 KB
/
delete.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**********************************************************************
* Author : Sergio Ceron Figueroa ([email protected])
* Alias : sxceron
* Web : http://www.dotrow.info
* Name : jShop v1.0
* Desc : Quita un producto del carrito de compras
* id : Obligatorio (id del producto)
*
***********************************************************************/
// Include file headers
include_once "./includes/validator.php";
include_once "./includes/settings.php";
include_once "./includes/db.php";
include_once "./includes/security.php";
$_validator = new Validator();
$_validator->setMethod( "GET" );
$_validator->setVars( array("id:required") );
if( $_validator->validate() ){
$values = $_validator->getValues();
if( $login == 1){
// Aumentamos el producto eliminado a la cantidad de articulos
// $pid = $db->get_var("select articulo_id from compras where usuario_id=".$_SESSION[ "user_id"] ." and compra_id=".base64_decode($values["id"])." and compra_estado=0");
// $db->query("update articulos set articulo_cantidad=articulo_cantidad+1 where articulo_id=$pid");
$db->query("delete from ponencias where usuario_id=".$_SESSION["user_id"]." and ponencia_id=".base64_decode($values["id"]));
echo "ok";
}else{
echo "Necesita <a href='./login.php'><b>iniciar sesion</b></a> para comprar.";
}
}
test
?>