added metric version of the vitals form
[openemr.git] / interface / forms / vitalsM / report.php
blob15f2b05cf1b08b9bfea939119128c758333cd930
1 <?php
2 include_once("../../globals.php");
3 include_once($GLOBALS["srcdir"]."/api.inc");
4 function vitalsM_report( $pid, $encounter, $cols, $id) {
5 $count = 0;
6 $data = formFetch("form_vitalsM", $id);
7 if ($data) {
8 print "<table><tr>";
9 foreach($data as $key => $value) {
10 if ($key == "id" || $key == "pid" || $key == "user" ||
11 $key == "groupname" || $key == "authorized" || $key == "activity" ||
12 $key == "date" || $value == "" || $value == "0000-00-00 00:00:00" ||
13 $value == "0.0" )
15 continue;
17 if ($value == "on") {
18 $value = "yes";
20 $key = ucwords(str_replace("_"," ",$key));
21 print "<td><span class=bold>$key: </span><span class=text>$value</span></td>";
22 $count++;
23 if ($count == $cols) {
24 $count = 0;
25 print "</tr><tr>\n";
29 print "</tr></table>";