| Server IP : 27.254.66.5 / Your IP : 216.73.217.39 Web Server : Apache/2 System : Linux cs82.hostneverdie.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64 User : technic2 ( 1951) PHP Version : 7.4.30 Disable Function : apache_child_terminate, apache_setenv, define_syslog_variables, escapeshellarg, escapeshellcmd,exec, fp, fput, highlight_file, ini_alter, ini_restore, inject_code, passthru,phpAds_remoteInfo, phpAds_XmlRpc,phpAds_xmlrpcDecode, phpAds_xmlrpcEncode, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid,posix_setuid, posix_setuid, posix_uname,proc_open,proc_close, proc_get_status, proc_nice, proc_terminate, shell_exec, syslog, system, xmlrpc_entity_decode, show_source,sleep,pcntl_exec,virtual,suexec,dbmopen,dl,symlink,disk_free_space,diskfreespace,leak MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/technic2/public_html/old-website/jivec58east/ |
Upload File : |
<?php
Ob_start();
session_start();
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<?php
require_once("config.php");
$sql = "select * from province where province_id = " . $_POST["select_osj"];
$result = mysql_query($sql) or die ("คำสั่ง sql ผิด");
?>
</head>
<body>
<?php
while ($row = mysql_fetch_array($result))
{
if ($_POST["select_osj"] <> "" and $_POST["osj_password"] <> "")
{
if ($_POST["select_osj"] == $row["province_id"] and $_POST["osj_password"] == $row["osj_password"] and $row["user_type"] == 0)
{
//echo $_POST["select_osj"] . " ";
echo "ตรวจสอบสิทธิ์ถูกต้อง...";
$_SESSION["osj_name"] = $row["osj_name"];
$_SESSION["province_id"] = $row["province_id"];
$_SESSION["user_type"] = $row["user_type"];
/*if ($_POST["select_osj"] == "200")
{
header("Refresh: 2; url=./" . $row["osj_english"] . "/menu.php");
}
elseif ($_POST["select_osj"] == "210")
{
header("Refresh: 2; url=./" . $row["osj_english"] . "/menu.php");
}
else
{
header("Refresh: 2; url=./" . $row["osj_english"] . "/logout.php");
}*/
header("Refresh: 2; url=./" . "menu.php");
}
elseif ($_POST["select_osj"] == $row["province_id"] and $_POST["osj_password"] == $row["osj_password"] and $row["user_type"] == 1)
{
echo "ตรวจสอบสิทธิ์ถูกต้อง...";
$_SESSION["osj_name"] = $row["osj_name"];
$_SESSION["province_id"] = $row["province_id"];
$_SESSION["user_type"] = $row["user_type"];
header("Refresh: 2; url=./" . "adminmenu.php");
}
else
{
echo "ตรวจสอบสิทธิ์ไม่ถูกต้อง...";
header("Refresh: 2; url=index.php");
}
//echo "<br>" . $_SESSION["vec"] . "<br>";
}
else
{
header("Location:index.php");
}
}
?>
</body>
</html>