1 <!-- Work
/School Note Form created by Nikolai Vitsyn
: 2004/02/13 and update
2005/03/30
2 Copyright (C
) Open Source Medical Software
4 This program is free software
; you can redistribute it
and/or
5 modify it under the terms of the GNU General
Public License
6 as published by the Free Software Foundation
; either version
2
7 of the License
, or (at your option
) any later version
.
9 This program is distributed in the hope that it will be useful
,
10 but WITHOUT ANY WARRANTY
; without even the implied warranty of
11 MERCHANTABILITY
or FITNESS
FOR A PARTICULAR PURPOSE
. See the
12 GNU General
Public License
for more details
.
14 You should have received a copy of the GNU General
Public License
15 along with this program
; if not
, write to the Free Software
16 Foundation
, Inc
., 59 Temple Place
- Suite
330, Boston
, MA
02111-1307, USA
. -->
19 include_once("../../globals.php");
20 include_once($GLOBALS["srcdir"]."/api.inc");
21 function note_report( $pid, $encounter, $cols, $id) {
23 $data = formFetch("form_note", $id);
25 //printf("<h1><font color=\"2FB472\">Company Name</font></h1>");
26 //printf("<h2><font color=\"2FB472\">Company Address</font></h2>");
27 //printf("<h2><font color=\"2FB472\">Company Address</font></h2>");
28 //printf("<h2><font color=\"2FB472\">Phone: (XXX) 999-9999</font></h2>");
29 //printf("<h2><font color=\"2FB472\">Fax: (XXX) 999-9999</font></h2>");
30 //printf("<h2><font color=\"2FB472\">www.company.com</font></h2>");
33 foreach($data as $key => $value) {
34 if ($key == "id" ||
$key == "pid" ||
$key == "user" ||
$key == "groupname" ||
$key == "authorized" ||
$key == "activity" ||
$key == "date" ||
$value == "" ||
$value == "0000-00-00 00:00:00") {
41 $key=ucwords(str_replace("_"," ",$key));
44 print "<td><span class=bold>$key: </span><span class=text>$value</span></td>";
46 if ($count == $cols) {
52 print "</tr></table>";