/var/www/hkosl.com/e-ims/file_manager/blocked.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
<?php
include 'config.php';

// Check if the user is logged in

if ((!isSet($_SESSION['loginname'])) || ($loggin <> '1'))
{
header("Location: login.php");
exit;
}
?>
<?php
$index 
= (int)$_GET["index"];

    echo
"<div class='tab_content'>
            <p style='font-size: 24px; color: #000000; text-align: center;'>Your Company Account is Not Available Now.</p>
        </div>"
;

function 
getSelect($field1$field2)
{
    if (
$field1 == $field2)
    {
        return 
"selected";
    }
    else
    {
        return 
"";
    }
}
?>