-
Notifications
You must be signed in to change notification settings - Fork 0
/
remove.php
61 lines (41 loc) · 1.07 KB
/
remove.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
session_start();
$_SESSION['proid']=null;
if(!isset($_SESSION['cusid']))
{
$_SESSION['err'] = 4;
header("Location:cus_login.html");
}
if(!empty($_REQUEST['prod']))
{
$proid = $_REQUEST['prod'];
}
else{
$_SESSION['err'] = 12;
header("Location:homepage.php");
}
$host = 'host=127.0.0.1';
$port = 'port=5432';
$dbname = 'dbname=ServiceKart';
$credential = 'user=postgres password=###alpha@@@123';
$session = pg_connect("$host $port $dbname $credential");
if($session)
{
}else
{
echo "<div class='alert alert-warning alert-dismissible' role='alert'>
<button type='button' class='close' data-dismiss='alert' aria-label='Close'><span aria-hidden='true'>×</span></button>
<strong>Database Error!</strong>
</div>";
}
$cus = $_SESSION['cusid'];
$testsql="select kart_pro_id from kart where kart_id=$cus";
$testexecute = pg_query($session,$testsql);
$testresult = pg_fetch_row($testexecute);
if($testresult[0] == $proid)
{
$sql = "delete from kart where kart_id = $cus and kart_pro_id=$proid";
$result = pg_query($session,$sql);
header("Location:kart.php");
}
?>