<?php
session_start
();
 if (
session_is_registered("valid_user"))
 {

include(
"../include/FunctionDB.php");
include(
"../include/Function.php");
include(
"admin_menu.php");
 
ConnectDB();
$strSQL "SELECT * FROM  permission_tb";
if (! 
$Page)
$Page 1;
$Pre_Page $Page 1;
$Next_Page $Page +1;
$Per_Page 20;
$result mysql_query($strSQL);

$Page_start = ($Per_Page*$Page) - $Per_Page;
$Num_Rows mysql_num_rows($result);

if( 
$Num_Rows <= $Per_Page)
   
$Num_Pages 1;
else if ((
$Num_Rows $Per_Page) == 0)
       
$Num_Pages = ($Num_Rows $Per_Page);
else
        
$Num_Pages = ($Num_Rows $Per_Page) + 1;
$Num_Pages = (int)$Num_Pages;

if (( 
$Page $Num_Pages) || ($Page 0))
  echo
"Page $Page More than $Num_Pages";
$strSQL .=" LIMIT $Page_start,$Per_Page" ;
$result mysql_query($strSQL); 
///////////////////////////////////////////////////////////////////////////////////
$num mysql_num_rows$result );
//$count = 0;
?>
<meta http-equiv="Content-Type" content="text/html; charset=TIS-620">
<table width="809" border="0" cellpadding="0" cellspacing="0">
    <tr>
        <td width="809"><br>
          <fieldset>
            <legend><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_3"]; ?>"><a href="menu_admin.php" >หน้าหลัก</a> <img src="../picture/ico3.gif" width="10" height="10" border="0" align="absmiddle"></font><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_3"]; ?>"><a href="adminmenu.php">ข้อมูลผู้ใช้งานระบบ</a></font></legend>
            <form id="form1" name="form1" method="post" action="InsertUser.php">
              <table width="53%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#000000" style="border:0px solid #CEC793">
                <tr bgcolor="#6B141D" >
                  <td colspan="2" bgcolor="#6B141D" style="border:1px solid gray"><div align="center"><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_3"]; ?>"><img src="../Image/admin.jpg" width="500" height="70" border="0" align="absmiddle" /></font></div></td>
                </tr>
                <tr bgcolor="#671404">
                  <td width="10%" bgcolor="#ffffff">&nbsp;</td>
                  <td width="90%" bgcolor="#ffffff">&nbsp;</td>
                </tr>
              </table>
          </form>
          </fieldset><br>
        <font color="<?php echo $GLOBALS["COLOR_FONT_3"];?>" size="2"><b>หมายเหตุ :</b> ใช้เมาส์คลิก<br>
      </font></td>
    </tr>
</table>
<?php 
    
}
else
{
    echo
"<body bgcolor=\"#CCCCCC\">";
     echo
"<meta http-equiv=\"refresh\" content=\"3;URL=../logout.php\" target=\"mainFrame\">\n";
     echo
"<center>";
      echo
"<br><br><br><b><font face=\"Tahoma\" size=\"4\" color=\"#FF0000\">Please Login</font> </b><br>";
      echo
"<br><br><font face=\"Tahoma\" size=\"10\" color=\"#000000\"> ERROR 404 PERMISION DENY</font><br>";
      echo
"<br><font face=\"Tahoma\" size=\"4\" color=\"#000000\"> คุณไม่มีสิทธ์ใช้งาน</font>";
      echo
"</center>";
      echo
"</body>";

?>