|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /home/queenjbs/www/admin/ |
Upload File : |
<?include $_SERVER['DOCUMENT_ROOT']."/conf/conf_dir.php";?>
<?
if($sessionLevel !=15){
echo "<script>alert('admin page');document.location='/admin/login.php';</script>";
}
?>
<META http-equiv=Content-Type content="text/html; charset=UTF-8">
<?
$order_id = trim($order_id);
$order_id = iconv("UTF-8","SHIFT_JIS", $order_id);
$id = get_db("select userid from user where userid = '$order_id'");
if($id){
echo "<script>alert('회원이 있습니다.');</script>";
}else{
echo "<script>alert('회원이 없습니다.다시 체크 해 주세요.');
parent.document.F_add.order_id.value='';parent.document.F_add.order_id.focus()</script>";
}
?>