-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsellerorderedit.php
159 lines (132 loc) · 5.42 KB
/
sellerorderedit.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?php
//Starts Session
session_start();
ob_start();
//If not logged in as user
if (!isset($_SESSION['username'])) {
$_SESSION['msg'] = "You must log in first";
header('location: login_s.php');
}
//Logout
if (isset($_GET['logout'])) {
session_destroy();
unset($_SESSION['username']);
header("location: login.php");
}
$con = mysqli_connect("localhost","root","", "projectwd");
$paymentID = $_GET['paymentID'];
$query = "SELECT paymentID, productID, productName, price, productQuantity, custName, custAddress, orderStatus, orderTracking from paymenting where paymentID = '".$paymentID."'";
$result = mysqli_query($con, $query);
while($row=mysqli_fetch_assoc($result))
{
$paymentID = $row['paymentID'];
$productID = $row['productID'];
$productName = $row['productName'];
$price = $row['price'];
$productQuantity = $row['productQuantity'];
$custName = $row['custName'];
$custAddress = $row['custAddress'];
$orderStatus = $row['orderStatus'];
$orderTracking = $row['orderTracking'];
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>BJBshop</title>
<!-- Google Fonts -->
<link href='https://fonts.googleapis.com/css?family=Titillium+Web:400,200,300,700,600' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700,300' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Raleway:400,100' rel='stylesheet' type='text/css'>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/responsive.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="shortcut icon" href="#" />
</head>
<body>
<div class="header-area">
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="user-menu">
</div>
</div>
<div class="col-md-4">
<div class="header-right">
</div>
</div>
</div>
</div>
</div> <!-- End header area -->
<div class="site-branding-area">
<div class="container">
<div class="row">
<div class="col-sm-6">
<div class="logo">
<h1><a href="index.php"><span>BJBshop | Laman Peniaga</span></a></h1>
</div>
</div>
</div>
</div>
</div> <!-- End site branding area -->
<center>
<br><br><br>
<form action="sellerorderedit2.php?paymentID=<?php echo $paymentID ?>" enctype="multipart/form-data" method="POST">
<table>
<tr>
<td>ID Pesanan </td>
<td><input type="hidden" name="paymentID" value="<?php echo $paymentID ?>" readonly><?php echo $paymentID ?></td>
</tr>
<td>ID Produk </td>
<td><input type="hidden" name="productID" value="<?php echo $productID ?>" readonly><?php echo $productID ?></td>
</tr>
<td>Nama Produk </td>
<td><input type="text" name="productName" value="<?php echo $productName ?>" readonly></td>
</tr>
<td>Jumlah Pesanan (RM) </td>
<td><input type="number" name="price" value="<?php echo $price ?>" readonly></td>
</tr>
<td>Kuantiti </td>
<td><input type="number" name="productQuantity" value="<?php echo $productQuantity ?>" readonly></td>
</tr>
<td>Nama Pengguna </td>
<td><input type="text" name="custName" value="<?php echo $custName ?>" readonly></td>
</tr>
<td>Alamat Pengguna </td>
<td><input type="text" name="custAddress" value="<?php echo $custAddress ?>" readonly></td>
</tr>
<td>Status Pesanan </td>
<td>
<input type="radio" name="orderStatus" value="Diterima" checked>Diterima <br>
<input type="radio" name="orderStatus" value="Sudah Dibayar">Sudah Dibayar <br>
<input type="radio" name="orderStatus" value="Sudah Dihantar">Sudah Dihantar <br>
<input type="radio" name="orderStatus" value="Dibatalkan">Dibatalkan <br><br>
</td>
</tr>
<td>Nombor Penjejakan </td>
<td><input type="text" name="orderTracking" value="<?php echo $orderTracking ?>" ></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="update" value="update">
<input type="submit" name="delete" value="delete">
<input type="submit" name="back" value="back"></td>
</tr>
</table>
</form>
</center>
<br>