-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMCDETmod.php
More file actions
103 lines (97 loc) · 2.66 KB
/
MCDETmod.php
File metadata and controls
103 lines (97 loc) · 2.66 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
<?php
$sphno=$_POST["sphno"];
$sphno0=$sphno;
require_once "connect.php";
$sql="SELECT s.S_Name,s.S_Phone,s.S_Add,r.R_Name,r.R_Phone,r.R_Add from sender as s,reciever as r,bookingtable where bookingtable.S_Phone=s.S_Phone and bookingtable.R_Phone=r.R_Phone";
$result = $conn->query($sql);
while($row = $result->fetch_assoc())
{
$S_Name=$row["S_Name"];
$S_Phone=$row["S_Phone"];
$S_Add=$row["S_Add"];
$R_Name=$row["R_Name"];
$R_Phone=$row["R_Phone"];
$R_Add=$row["R_Add"];
}
$rphno0=$R_Phone;
?>
<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="MCDETmod2.php" method="post">
Sender's Name:<input type="text" value= "<?php echo $S_Name;?>" name="sname"><br>
Sender's Phone:<input type="text"value= "<?php echo $S_Phone;?>" name="sphno"><br>
Sender's Address:<input type="text" value= "<?php echo $S_Add;?>" name="sadd"><br>
Reciever's Name:<input type="text"value= "<?php echo $R_Name;?>" name="rname"><br>
Reciever's Phone:<input type="text" value= "<?php echo $R_Phone;?>" name="rphno"><br>
Reciever's Address:<input type="text" value= "<?php echo $R_Add;?>" name="radd"><br>
<input type="hidden" value="<?php echo $sphno0;?>" name="sphno0">
<input type="hidden" value="<?php echo $rphno0;?>" name="rphno0">
<input type="submit" value="Submit" method="post">
</form>
</div>
<input type="submit" value ="Return" onclick='location.href="admin.php"'>
</body>
</html>