-
Notifications
You must be signed in to change notification settings - Fork 3
/
editexam.php
55 lines (55 loc) · 2.48 KB
/
editexam.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php# ThaiRIS (Thai Radiology Information System)
# Version: 1.8
# File last modified: 4-Oct 2020
# File name:
# http://www.thairis.net
# By ThaiRIS.Net
# Email : [email protected]
##############################################################################
# COPYRIGHT NOTICE
# Copyright 2009-2024 ThaiRIS All Rights Reserved.
#
# This script may be used and modified free of charge by anyone so long as
# this copyright notice and the comments above remain intact. By using this
# code you agree to indemnify ThaiRIS.net from any liability that might
# arise from it's use.
#
# Selling the code for this program without prior written consent is
# expressly forbidden. In other words, please ask first before you try and
# make money off this program.
#
# Obtain permission before redistributing this software over the Internet or
# in any other medium. In all cases copyright and header must remain intact.
# This Copyright is in full effect in any country that has International
##############################################################################
?>
<!DOCTYPE html>
<html>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" >
<script src="bootstrap/js/bootstrap.min.js" ></script>
<?php
include "session.php";
header("Content-type: text/html; charset=utf-8");
if (($usertype !== 'ADMIN') AND ($superadmin == 0) AND ($admin == 0))
{
?>
<script language=JavaScript src="frames_body_array_<?php echo $LANGUAGE ?>.js" type=text/javascript></script>
<script language=JavaScript src="mmenu.js" type=text/javascript></script>
<?php
echo "<body bgcolor=gray>";
echo "Admin area you can't use this page";
echo "<meta http-equiv=\"refresh\" content=\"4;url=main.php\" />";
mysqli_query($dbconnect, "insert into xray_log (USER,IP,EVENT,URL,MRN,ACCESSION)VALUES ('$username','$IP','Try Login Edit Exam','$URL','','')");
exit;
}
echo "<table><tr><td colspan=3></td></tr>\n";
echo "<tr><td>Patient Info</td><td>Order Info</td><td>Order Detail</td></tr>";
echo "<tr>";
echo "<td>";
echo "</td>";
echo "<td>";
echo "<td>";
echo "</td>";
echo "</tr>";
echo "</table>";
?>