-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathNew Receive.php
44 lines (34 loc) · 873 Bytes
/
New Receive.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
<?php
session_start();
$_SESSION["tab"] = "New Receive";
if($_SESSION["login"] != 1)
echo '<h2 txtcolor="red">Authentication Error!!!</h2>';
else{
include_once('header.php');
###########contents of div goes here###########
echo '<form name="addPerson" action = "newReceive.php" method = "POST">
<h2>New Receive</h2>
<br>
<p>
<label>Personal Id:</label>
<br>
<input type = "Number" name = "pid" class="input" required/>
</p>
<p>
<label>Units of blood Received:</label>
<br>
<input type = "Number" maxlength="1" name = "units" class="input" required/>
</p>
<p>
<label>Admitted Hospital:</label>
<br>
<input type = "text" name = "hospital" class="input" required/>
</p>
<p>
<button class="btn">Submit</button>
</p>
</form>';
##################################################
include_once('footer.php');
}
?>