Change formatting of initial comment block.
[openemr.git] / contrib / forms / vitalsigns / view.php
blob41cb5c10f02dfd8b22c892c6a02bddc4631e98c0
1 <!-- Forms generated from formsWiz -->
2 <?php
3 include_once("../../globals.php");
4 ?>
5 <html><head>
6 <?php html_header_show();?>
7 <link rel="stylesheet" href="<?php echo $css_header;?>" type="text/css">
8 </head>
9 <body class="body_top">
10 <?php
11 include_once("$srcdir/api.inc");
12 $obj = formFetch("form_vitalsigns", $_GET["id"]);
14 <form method=post action="<?php echo $rootdir?>/forms/vitalsigns/save.php?mode=update&id=<?php echo $_GET["id"];?>" name="my_form">
15 <span class="title">Vital Signs</span><Br><br>
16 <span class=bold>Blood Pressure</span><br>
18 <table width=100%>
19 <tr><td>
20 <span class=text>Standing: </span><input size=3 type=entry name="standing_bp_1" value="<?php echo $obj{"standing_bp_1"};?>" >
21 <input size=3 type=entry name="standing_bp_2" value="<?php echo $obj{"standing_bp_2"};?>" >
22 </td><td>
23 <span class=text>Sitting: </span><input size=3 type=entry name="sitting_bp_1" value="<?php echo $obj{"sitting_bp_1"};?>" >
24 <input size=3 type=entry name="sitting_bp_2" value="<?php echo $obj{"sitting_bp_2"};?>" >
25 </td><td>
26 <span class=text>Supine: </span><input size=3 type=entry name="supine_bp_1" value="<?php echo $obj{"supine_bp_1"};?>" >
27 <input size=3 type=entry name="supine_bp_2" value="<?php echo $obj{"supine_bp_2"};?>" >
28 </td><td>
29 <span class=text>Systolic: </span><input size=3 type=entry name="systolic_bp_1" value="<?php echo $obj{"systolic_bp_1"};?>" >
30 <input size=3 type=entry name="systolic_bp_2" value="<?php echo $obj{"systolic_bp_2"};?>" >
31 </td><td>
32 <span class=text>Diastolic: </span><input size=3 type=entry name="diastolic_bp_1" value="<?php echo $obj{"diastolic_bp_1"};?>" >
33 <input size=3 type=entry name="diastolic_bp_2" value="<?php echo $obj{"diastolic_bp_2"};?>" >
34 </tr>
35 </table>
37 <table><tr><td>
38 <span class=text>Heart Rate (Beats/Minute): </span></td><td><input size=3 type=entry name="heart_rate_beats_per_minute" value="<?php echo $obj{"heart_rate_beats_per_minute"};?>" ></td>
39 <td><span class=text>Respiration (Breaths/Minute): </span></td><td><input size=3 type=entry name="respiration_beats_per_minute" value="<?php echo $obj{"respiration_beats_per_minute"};?>" ></td></tr>
40 </table>
42 <table>
43 <tr>
44 <td><span class=text>Temperature (C): </span><input size=3 type=entry name="temperature_c" value="<?php echo $obj{"temperature_c"};?>" ></td>
45 <td><span class=text>Temperature (F): </span><input size=3 type=entry name="temperature_f" value="<?php echo $obj{"temperature_f"};?>" ></td>
46 <td><span class=text>Temperature Method: </span><input type=entry name="temperature_method" value="<?php echo $obj{"temperature_method"};?>" ></td>
47 </tr><tr>
48 <td><span class=text>Height (Feet): </span><input size=3 type=entry name="height_feet" value="<?php echo $obj{"height_feet"};?>" ></td>
49 <td><span class=text>Height (Inches): </span><input size=3 type=entry name="height_inches" value="<?php echo $obj{"height_inches"};?>" ></td>
50 <td><span class=text>Height (Centimeters): </span><input size=3 type=entry name="height_centimeters" value="<?php echo $obj{"height_centimeters"};?>" ></td>
51 </tr><tr>
52 <td><span class=text>Weight (Lbs): </span><input size=3 type=entry name="weight_lbs" value="<?php echo $obj{"weight_lbs"};?>" ></td>
53 <td><span class=text>Weight (Ozs): </span><input size=3 type=entry name="weight_ozs" value="<?php echo $obj{"weight_ozs"};?>" ></td>
54 <td><span class=text>Weight (Kgs): </span><input size=3 type=entry name="weight_kgs" value="<?php echo $obj{"weight_kgs"};?>" ></td>
55 </tr>
56 </table>
59 <span class=text>Body Mass Index: </span><input size=5 type=entry name="body_mass_index" value="<?php echo $obj{"body_mass_index"};?>" >
60 <span class=text>Figure Shape (If Overweight): </span><input type=entry name="figure_shape" value="<?php echo $obj{"figure_shape"};?>" >
61 <span class=text>Additional Notes: </span><br><textarea cols=40 rows=8 wrap=virtual name="additional_notes" ><?php echo $obj{"additional_notes"};?></textarea>
62 <br>
63 <a href="javascript:top.restoreSession();document.my_form.submit();" class="link_submit">[Save]</a>
64 <br>
65 <a href="<?php echo $GLOBALS['form_exit_url']; ?>" class="link" onclick="top.restoreSession()">[Don't Save Changes]</a>
66 </form>
67 <?php
68 formFooter();