62 lines
1.5 KiB
PHP
62 lines
1.5 KiB
PHP
<?php
|
|
@session_start();
|
|
if ($_SESSION['sess_userid'] <> session_id()) {
|
|
header("Location: index.php");
|
|
exit();
|
|
}
|
|
$account = $_SESSION['account'];
|
|
$name = $_SESSION['name'];
|
|
$position = $_SESSION['position'];
|
|
$ip = $_SESSION['ip'];
|
|
$page = "คำนวณค่าใช้จ่ายในการผ่าตัด";
|
|
$page_link = "or_calculate.php";
|
|
|
|
require("main_script.php");
|
|
require("date_format.php");
|
|
require("check_client.php");
|
|
require("connect_web.php");
|
|
require("connect_hosxp.php");
|
|
?>
|
|
<!DOCTYPE html>
|
|
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>HOSxP Web Service ✎ ✉ |<?php echo $page; ?></title>
|
|
<link href="https://fonts.googleapis.com/css?family=Sarabun&display=swap" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div class="mainwrapper">
|
|
|
|
<!-- START OF LEFT PANEL -->
|
|
<div class="leftpanel">
|
|
<?php require("left_panel.php"); ?>
|
|
</div>
|
|
<!--mainleft-->
|
|
<!-- END OF LEFT PANEL -->
|
|
|
|
<!-- START OF RIGHT PANEL -->
|
|
<div class="rightpanel">
|
|
<?php require("right_panel_or.php"); ?>
|
|
</div>
|
|
<!--mainright-->
|
|
<!-- END OF RIGHT PANEL -->
|
|
|
|
<div class="clearfix"></div>
|
|
<div class="footer">
|
|
<?php
|
|
require("footer.php");
|
|
?>
|
|
</div>
|
|
<!--footer-->
|
|
|
|
</div>
|
|
<!--mainwrapper-->
|
|
<?php
|
|
require("footer_script.php");
|
|
?>
|
|
</body>
|
|
|
|
</html>
|