incremented database counter for prior feature
[openemr.git] / interface / billing / customize_log.php
blobb554e4d984f3e2ac963475e150a90fc7330b5d7c
1 <?php
2 /**
3 * interface/billing/customize_log.php - starting point for customization of billing log
5 * Copyright (C) 2014 Stephen Waite <stephen.waite@cmsvt.com>
7 * LICENSE: This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 3
10 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
18 * @package OpenEMR
19 * @author Stephen Waite <stephen.waite@cmsvt.com>
20 * @link http://www.open-emr.org
23 $fake_register_globals=false;
24 $sanitize_all_escapes=true;
26 require_once("../globals.php");
28 $filename = $GLOBALS['OE_SITE_DIR'] . '/edi/process_bills.log';
31 $fh = fopen($filename,'r');
33 while ($line = fgets($fh)) {
34 echo(text($line));
35 echo("<br />");
37 fclose($fh);