-
Notifications
You must be signed in to change notification settings - Fork 0
/
up receiver.php
190 lines (174 loc) · 5.21 KB
/
up receiver.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<?php
$mysql_id = mysqli_connect("localhost", "root", "", "bloodbank_db");
$query = "SELECT * FROM `RECEIVER_STATIC` ;";
$res = mysqli_query($mysql_id, $query);
?>
<link rel="stylesheet" href="common.css">
<div class="nav">
<div class="topnav">
<a class="active" href="welcome.html">Home</a>
<a href="contact.html">Contact</a>
</div>
</div>
<style>
body {
background-image: url('images/11.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
.tab{
}
form {
width: 30%;
margin: 60px auto;
background: #ca3e3e;
padding: 60px 120px 80px 120px;
text-align: center;
-webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
opacity: .6;
}
label {
display: block;
position: relative;
margin: 40px 0px;
}
.label-txt {
position: absolute;
top: -1.6em;
padding: 10px;
font-family: sans-serif;
font-size: .8em;
letter-spacing: 1px;
color: rgb(120, 120, 120);
transition: ease .3s;
}
.input {
width: 100%;
padding: 10px;
background: transparent;
border: none;
outline: none;
}
.line-box {
position: relative;
width: 100%;
height: 2px;
background: #BCBCBC;
}
.line {
position: absolute;
width: 0%;
height: 2px;
top: 0px;
left: 50%;
transform: translateX(-50%);
background: #8BC34A;
transition: ease .6s;
}
.input:focus+.line-box .line {
width: 100%;
}
.label-active {
top: -3em;
}
button {
display: inline-block;
padding: 12px 24px;
background: rgb(220, 220, 220);
font-weight: bold;
color: rgb(120, 120, 120);
border: none;
outline: none;
border-radius: 3px;
cursor: pointer;
transition: ease .3s;
}
button:hover {
background: #8BC34A;
color: #ffffff;
}
h1 {
color: aquamarine;
text-align: center;
background-color: black;
height: 50px;
}
</style>
<center><h1 >DATA OF RECEIVERS</h1></center>
<table align="center" border="1px" style="background-color:black;color:grey;width:600px; line-height:30px;">
<tr>
<th colspan="7">
<h2>INVENTORY</h2>
</th>
</tr>
<tr>
<th>RECEIVER ID</th>
<th>RECEIVER NAME</th>
<th>GENDER</th>
<th>BIRTH DATE</th>
<th>MOBILE NUMBER</th>
<th>EMAIL</th>
<th>ADDRESS</th>
</tr>
<?php while ($rows = mysqli_fetch_assoc($res)) { ?>
<tr>
<td><?php echo $rows["ID"]; ?></td>
<td><?php echo $rows["NAME"]; ?></td>
<td><?php echo $rows["SEX"]; ?></td>
<td><?php echo $rows["DOB"]; ?></td>
<td><?php echo $rows["PHONE"]; ?></td>
<td><?php echo $rows["EMAIL"]; ?></td>
<td><?php echo $rows["ADDRESS"]; ?></td>
</tr>
<?php } ?>
</table>
<html>
<body>
<center><h1>RECEIVER UPDATION FORM</h1></center>
<form action="up receiver2.php" method="post">
<label><b>Enter the receiver id which cannot be changed:<input type="text" name="Id" required /></b>
<div class="line-box">
<div class="line"></div>
</div>
</label>
<label><b>Enter receiver's name:<input type="text" name="Name" required /></b>
<div class="line-box">
<div class="line"></div>
</div>
</label>
<label><b>
<p>Enter receiver's gender:</p>
</b>
<b><input type="radio" name="Gdr" value="male">MALE</b>
<b><input type="radio" name="Gdr" value="female">FEMALE</b>
<div class="line-box">
<div class="line"></div>
</div>
</label>
<label><b>Enter receiver's birth-date:<input type="date" name="birth" required /></b>
<div class="line-box">
<div class="line"></div>
</div>
</label>
<label><b>Enter receiver's phone number:<input type="text" name="Mobile_no"></b>
<div class="line-box">
<div class="line"></div>
</div>
</label>
<label><b>Enter receiver's Email:<input type="text" name="Email" required /></b>
<div class="line-box">
<div class="line"></div>
</div>
</label>
<label><b>Enter receiver's address:<input type="text" name="Address" required /></b>
<div class="line-box">
<div class="line"></div>
</div>
</label>
<input type="submit" value="submit">
<br />
</form>
</body>
</html>