CCR/CCD reporting module: added option to see the raw xml
[openemr.git] / interface / patient_file / encounter / encounter_top.php
blobaa9e5a2adc823bbba429ba7485bfb1f79029a186
1 <?php
2 // Cloned from patient_encounter.php.
4 include_once("../../globals.php");
5 include_once("$srcdir/pid.inc");
6 include_once("$srcdir/encounter.inc");
8 if (isset($_GET["set_encounter"])) {
9 // The billing page might also be setting a new pid.
10 $set_pid = $_GET["set_pid"] ? $_GET["set_pid"] : $_GET["pid"];
11 if ($set_pid && $set_pid != $_SESSION["pid"]) {
12 setpid($set_pid);
14 setencounter($_GET["set_encounter"]);
17 <html>
18 <head>
19 <? html_header_show();?>
20 </head>
21 <frameset cols="*">
22 <frame src="forms.php" name="Forms" scrolling="auto">
23 </frameset>
24 </html>