-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccept.php
57 lines (36 loc) · 922 Bytes
/
accept.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
<?php
session_start();
if(!isset($_SESSION['proid']))
{
$_SESSION['err'] = 7;
header("Location:homepage.php");
}
$orderid = $_REQUEST['orderid'];
$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>";
}
$sql = "update customer_orders set order_status='Confirmed' where orderID=$orderid ";
$result = pg_query($session,$sql);
if($result)
{
$_SESSION['err'] = 8;
header("Location:profile_professional.php");
}
else
{
$_SESSION['err'] = 9;
header("Location:profile_professional.php");
}
?>
?>