?
Path : /home/admin/domains/happytokorea.com/public_html_bk/promice/Admin/ |
Current File : /home/admin/domains/happytokorea.com/public_html_bk/promice/Admin/CheckStock.php |
<? @session_start(); ob_start(); $useradmin = $_SESSION["useradmin"]; if(empty($useradmin)) { echo "<script>alert('หน้านี้จำกัดเฉพาะ Admin เท่านั้น');history.back();</script>"; exit(); } require_once "../include/tdate.php"; require_once "../include/connect.php"; require_once "../include/connectdb.php"; $sql="select * from useradmin where useradmin='$useradmin'"; $db_query=mysql_db_query($db,$sql); $result=mysql_fetch_array($db_query); $id=$result[id]; $adminname=$result[name]; $user_admin=$result[useradmin]; $pass_admin=$result[passadmin]; $date1 = "$_POST[yy1]-$_POST[mm1]-$_POST[dd1]"; $date2 = "$_POST[yy2]-$_POST[mm2]-$_POST[dd2]"; $date_1 = date($date1); $date_2 = date($date2); ?> <html> <head> <title><? echo "$headtxt"; ?></title> <meta http-equiv="Content-Type" content="text/html; charset=tis-620"> <!-- Fireworks MX Dreamweaver MX target. Created Sat Apr 02 10:29:23 GMT+0700 (SE Asia Standard Time) 2011--> <link href="../css/style.css" rel="stylesheet" type="text/css"> </head> <body bgcolor="#ffffff"> <div align="center"><strong> </strong> <table width="89%" border="0" align="center" cellpadding="1" cellspacing="1"> <tr valign="top"> <td width="57%"><? echo "$headtxt | $e_date $etime"; ?><br> <div align="left">หน้าปัจจุบันของคุณ : <a href="Main.php">หน้าหลัก</a> --> <strong>เปลี่ยนรหัสผ่าน</strong></div></td> <td width="43%"> <div align="right">ยินดีต้อนรับคุณ <? echo "<u>$adminname</u>"; ?> เข้าใช้งานในระบบ<br> [ <a href="ChangePass.php">เปลี่ยนรหัสผ่าน</a> ] <a href="logout.php">ออกจากระบบ</a> </div></td> </tr> <tr> <td colspan="2"><table width="100%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#E9E9E6"> <tr> <td><div align="center"> <table width="100%" border="0" cellspacing="1" cellpadding="1"> <tr> <td><div align="center"><br> <table width="100%" border="0" cellspacing="1" cellpadding="1"> <tr> <td><div align="center"> <table width="100%" border="0" cellspacing="1" cellpadding="1"> <tr> <td><div align="center"><a href="CheckStockOut.php"><br> <br> <img src="images/word.jpg" width="222" height="48" border="0"></a> <a href="CheckStockPrint.php" target="_blank"><img src="images/print.jpg" width="222" height="48" border="0"></a> </div></td> </tr> <tr> <td><strong>:: สินค้าคงเหลือ ::</strong></td> </tr> <tr> <td><div align="center"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr class="jobscss"> <td bgcolor="#FFFFFF"> <table width="100%" border="0" cellspacing="1" cellpadding="1"> <tr bgcolor="#CC3300"> <td width="15%" height="15"><div align="center"><strong>รูป</strong></div></td> <td width="12%"><div align="center"><strong>รหัสสินค้า</strong></div></td> <td width="32%"><div align="center"><strong>ชื่อสินค้า</strong></div></td> <td width="13%"><div align="center"><strong>ราคา(บาท)</strong></div></td> <td width="13%"><div align="center"><strong>สถานะ</strong></div></td> <td width="15%"><div align="center"><strong>จำนวนคงเหลือ</strong></div></td> </tr> </table> <? $page = $_GET['page']; $select_type="select * from products order by id asc"; $query_select=mysql_query($select_type); $num_rows=mysql_num_rows($query_select); if($num_rows<1){ echo "<br><br><center><b>ยังไม่มีการเพิ่มข้อมูลค่ะ</b></center>"; }else{ $select="select * from products order by id asc"; $q_ry = mysql_query($select); $num_rows=mysql_num_rows($q_ry); $pagesize=20; $rt=$num_rows%$pagesize; if($rt!=0) { $totalpage=floor($num_rows/$pagesize)+1; } else { $totalpage=floor($num_rows/$pagesize); $toppic_id=1; } if(empty($page)) { $page=1; } mysql_free_result($q_ry); $goto=($page-1)*$pagesize; $sql_select_mem="Select * From products order by id asc limit $goto,$pagesize"; $fect=mysql_query($sql_select_mem); if(!$fect) { ("ติดต่อฐานข้อมูลไม่ได้".mysql_error()); exit; } $bgcount=0; while($rows=mysql_fetch_array($fect)) { $idx =$rows['id']; $productstypecode =$rows['productstypecode']; $productscode = $rows['productscode']; $productsname = $rows['productsname']; $productsdetail = $rows['productsdetail']; $productsprice = $rows['productsprice']; $productsphoto = $rows['productsphoto']; $status = $rows['status']; $amount = $rows['amount']; $bgcount=$bgcount+1; $bgmod=$bgcount%2; if($bgmod==0){ $bgcolor="#D0C9AA"; }else{ $bgcolor="#EBE7D4"; } ?> <br> <table width="100%" border="0" cellspacing="1" cellpadding="1"> <tr> <td width="15%" height="15" bgcolor=<? echo "$bgcolor"; ?>><div align="center"><? echo "<img src=IMG/$productsphoto width=100 height=100>"; ?></div></td> <td width="12%" bgcolor=<? echo "$bgcolor"; ?>><div align="center"><? echo "$productscode"; ?></div></td> <td width="32%" bgcolor=<? echo "$bgcolor"; ?>><? echo "$productsname"; ?></td> <td width="13%" bgcolor=<? echo "$bgcolor"; ?>><div align="center"><? echo "$productsprice"; ?></div></td> <td width="13%" bgcolor=<? echo "$bgcolor"; ?>><div align="center"> <? if ($status == "11111") { echo "สินค้าโปรโมชั่น"; }else{ echo "สินค้าขายปกติ"; } ?> </div></td> <td width="15%" bgcolor=<? echo "$bgcolor"; ?>><div align="center"><? echo "$amount"; ?></div></td> </tr> </table> <? } } ?> </td> </tr> <tr class="jobscss"> <td><strong><span class="maekhawtom"><br> หน้าที่ :</span></strong> <span class="maekhawtom"> <? for($i=1;$i<$page;$i++) { echo"[<a href='$PHP_SELF?page=$i'>$i</a>]"; } echo"[<b>$page</b>]"; for($i=$page+1;$i<=$totalpage;$i++) { echo"[<a href='$PHP_SELF?page=$i'>$i</a>]"; } ?> </span><span class="maekhawtom"> </span></td> </tr> <tr> <td><div align="center"></div></td> </tr> </table> </div></td> </tr> </table> </div></td> </tr> </table> <br> <br> </div></td> </tr> </table> </div></td> </tr> </table></td> </tr> <tr> <td colspan="2"><div align="center"><br> <? echo "$buttomtxt"; ?> </div></td> </tr> </table> </div> </body> </html>