19 lines
445 B
PHP
19 lines
445 B
PHP
<?php
|
|
if (false) {
|
|
ini_set('display_startup_errors', 1);
|
|
ini_set('display_errors', 1);
|
|
error_reporting(-1);
|
|
}
|
|
include_once("config.php");
|
|
|
|
define("INDEXPHP", TRUE);
|
|
if (isset($_GET["method"]) && $_GET["method"] == "view" && isset($_GET["AccessionNumber"])) {
|
|
// die("AccessionNumber=" . $_GET["AccessionNumber"]);
|
|
include_once("viewer.php");
|
|
exit(0);
|
|
} else {
|
|
// die("studylist.php");
|
|
include_once("studylist.php");
|
|
exit(0);
|
|
}
|