-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha_w_prognosis_1.php
More file actions
48 lines (43 loc) · 1.09 KB
/
a_w_prognosis_1.php
File metadata and controls
48 lines (43 loc) · 1.09 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
<?php
/**
* Clinican+
* @version v2.0
* @author ArvindSA, Anoop Toffy
*/
require('inc/sql.php');
$q=query('SELECT * FROM symptom_cat');
?>
<h1> Search using Prognosis </h1>
<form action="a_w_prognosis_2.php" method="post">
<table width="100%" border="0">
<tr>
<td style="width:200px;"><h3>Age:</h3></td>
<td><input type="text" name="age" id="age"></td>
</tr>
<tr>
<td><h3>Sex:</h3></td>
<td><p>
<label>
<input type="radio" name="sex" value="m" id="sex_0">
Male</label>
<label>
<input type="radio" name="sex" value="f" id="sex_1">
Female</label>
<br>
</p></td>
</tr>
</table><p> </p><!--
<h2>Category</h2>
<?php
while($row=mysql_fetch_assoc($q)){
echo '<div class="half left"> <label><input type="checkbox" name="c['.$row['cat_id'].']" id="c['.$row['cat_id'].']">'.$row['cat_name'].'</label></div>';
}
?>-->
<div class="clear"></div>
<div class="center">
<input type="submit" name="submit" id="submit" value="Submit" class="buttonblue" />
</div>
</form>
<script type="text/javascript">
bind_form();
</script>