2 include_once("../../globals.php");
3 include_once($GLOBALS["srcdir"]."/api.inc");
4 function misc_billing_options_report( $pid, $encounter, $cols, $id) {
6 $data = formFetch("form_misc_billing_options", $id);
9 foreach($data as $key => $value) {
10 if ($key == "id" ||
$key == "pid" ||
$key == "user" ||
$key == "groupname" ||
$key == "authorized" ||
$key == "activity" ||
$key == "date" ||
$value == "" ||
$value == "0" ||
$value == "0000-00-00 00:00:00" ||
$value =="0000-00-00") {
17 $key=ucwords(str_replace("_"," ",$key));
18 print "<td><span class=bold>$key: </span><span class=text>$value</span></td>";
20 if ($count == $cols) {
26 print "</tr></table>";