-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpathologist_submit_urine_report_form.php
165 lines (116 loc) · 4.87 KB
/
pathologist_submit_urine_report_form.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
<?php
include 'pathologist_sidebar.php';
include 'connection_link.php';
if(isset($_GET['Sample_id']))
{
$id=$_GET['Sample_id'];
$sql = "SELECT * FROM sample where Sample_id='$id'";
$result = mysqli_query($conn, $sql);
if($result->num_rows > 0)
{
while($row = $result->fetch_assoc())
{
$Sample_id=$row["Sample_id"];
$Patient_name=$row["Patient_name"];
$Age=$row['Age'];
$Sex = $row['Sex'];
$Email = $row['Email'];
$Date_of_payment = $row['Date_of_payment'];
$Payment_status= $row['Payment_status'];
}
}
}
?>
<form action="pathologist_submit_urine_report_link.php" method="post">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="about-title">
<h2>Report(Urine) data Submisson</h2>
<p class="line1"></p>
</div>
</div>
<div class="col-md-5 offset-md-2">
<div class="input-form">
<label for=""> Sample ID:</label>
<input type="text" name="Sample_id" value="<?php echo $Sample_id; ?>" readonly>
</div>
<div class="input-form">
<label for=""> Patient Name: </label>
<input type="text" name="Patient_name" value="<?php echo $Patient_name; ?>"readonly>
</div>
<div class="input-form">
<label for=""> Patient Email: </label>
<input type="text" name="Email" value="<?php echo $Email; ?>"readonly>
</div>
<div class="input-form">
<label for=""> Patient Age:</label>
<input type="text" name="Age" value="<?php echo $Age; ?>" readonly>
</div>
<div class="input-form">
<label for=""> Sex:</label>
<input type="text" name="Sex" value="<?php echo $Sex; ?>"readonly>
</div>
<div class="input-form">
<label for="">Albumin: </label>
<input type="text" placeholder="Albumin" name="Albumin" required>
</div>
<div class="input-form">
<label for=""> ALP:</label>
<input type="text" placeholder="ALP" name="ALP" >
</div>
<div class="input-form">
<label for=""> BHM: </label>
<input type="text" placeholder="BHM" name="BHM" >
</div>
<div class="input-form">
<label for=""> CK: </label>
<input type="text" placeholder="CK" name="CK" >
</div>
</div>
<div class="col-md-5 ">
<div class="input-form">
<label for=""> CRISTROL: </label>
<input type="text" placeholder="CRISTROL" name="CRISTROL" >
</div>
<div class="input-form">
<label for=""> Epinephrin:</label>
<input type="text" placeholder="Epinephrin" name="Epinephrin" >
</div>
<div class="input-form">
<label for=""> Metanephorin:</label>
<input type="text" placeholder="Metanephorin" name="Metanephorin" >
</div>
<div class="input-form">
<label for=""> Norpinephrin: </label>
<input type="text" placeholder="Norpinephrin" name="Norpinephrin" >
</div>
<div class="input-form">
<label for=""> Normetanephorin:</label>
<input type="text" placeholder="Normetanephorin" name="Normetanephorin" >
</div>
<div class="input-form">
<label for=""> LYMPHOCYTES: </label>
<input type="text" placeholder="LYMPHOCYTES" name="LYMPHOCYTES" >
</div>
<div class="input-form">
<label for=""> Dopamine: </label>
<input type="text" placeholder="Dopamine" name="Dopamine" >
</div>
<div class="input-form">
<label for=""> RESULT:</label>
<input type="text" placeholder="RESULT" name="RESULT" >
</div>
<div class="input-form">
<label for="">COMMENT</label>
<input type="text" placeholder="COMMENT" name="COMMENT" >
</div>
</div>
</div>
</div>
<br>
<br>
<button class="btn btn_one" name="Submit" value="<?php echo $Sample_id; ?>" ><big><b>Submit</b></big></button>
</form>
</p>
</center>