-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMDELmod.php
More file actions
104 lines (99 loc) · 2.69 KB
/
MDELmod.php
File metadata and controls
104 lines (99 loc) · 2.69 KB
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
<?php
$did=$_POST["did"];
$did0=$did;
require_once "connect.php";
$sql="SELECT * from delivery natural join courier as CourNo where Did='$did'";
$result = $conn->query($sql);
while($row = $result->fetch_assoc())
{
$Did=$row["Did"];
$CourNo=$row["CourNo"];
$CourWeight=$row["CourWeight"];
$CourType=$row["CourType"];
$branchcode=$row["branchcode"];
$sid=$row["sid"];
$status=$row["status"];
$arrivaltime=$row["arrivaltime"];
}
?>
<html>
<style>
body {
font-family:serif;
letter-spacing: 0.1em;
color:black;
font-size:30px;
background: #ff9966; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ff5e62, #ff9966); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ff5e62, #ff9966); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
table {
border-collapse: collapse;
width: 100%;
color:linear-gradient(to right, #232526 0%, #414345 51%, #232526 100%) ;
font-family:times;
font-size: 25px;
text-align: center;
}
input[type="submit"]
{
background: :black;
background-color: black;
padding:10px;
font-size:25px;
margin:20px;
width:10%;
border:0px transparent;
border-radius:10px;
color:white;
}
th {
background-color: black;
color: white;
}
#container{
height:auto;
width:95%;
left: 55%;
top:16%;
background:transparent
border: 40px solid transparent;
border-radius: 10px;
text-align:center;
padding-bottom: 20px;
padding-top:20px;
margin-bottom: 80px;
}
input[type="text"],input[type="password"]
{
padding: 7px 10px;
font-size:40px;
margin:10px;
width:30%;
outline:0;
border:0px transparent;
border-radius: 10px;
}
input[type="submit"]:hover
{
opacity:0.8;
}
</style>
<body>
<div id="container">
<form action="MDELmod2.php" method="post">
Delivery ID:<input type="text" value= "<?php echo $Did;?>" name="Did"><br>
Courier Number:<input type="text"value= "<?php echo $CourNo;?>" name="CourNo"><br>
Courier Weight:<input type="text" value= "<?php echo $CourWeight;?>" name="CourWeight"><br>
Courier Type:<input type="text"value= "<?php echo $CourType;?>" name="CourType"><br>
Branch Code:<input type="text" value= "<?php echo $branchcode;?>" name="branchcode"><br>
Staff ID:<input type="text" value= "<?php echo $sid;?>" name="sid"><br>
Status:<input type="text" value= "<?php echo $status;?>" name="status"><br>
Arrival Time:<input type="date" value= "<?php echo $arrivaltime;?>" name="arrivaltime"><br>
<input type="hidden" value="<?php echo $did0;?>" name="did0">
<input type="submit" value="Submit" method="post">
</form>
</div>
<input type="submit" value ="Return" onclick='location.href="admin.php"'>
</body>
</html>