|
|
|
รบกวนด้วยตรับ ไม่รุ้เขียนผิดตรงใหน ช่วยหน่อยครับ ขอบคุณครับ |
|
|
|
|
|
|
|
รบกวนด้วยตรับ ไม่รุ้เขียนผิดตรงใหน ช่วยหน่อยครับ ขอบคุณครับ
คือต้องการให้ซื่อหมวดหมู่ออกมา แต่ไม่รู้เขียนผิดตรงใหนมันกลับไม่แสดง
Code (PHP)
<?
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ระบบหลังร้าน - สินค้า</title>
<link href="css/design.css" rel="stylesheet" type="text/css" />
</head>
<?
include('../process/connect.php');
if(isset($_SESSION['username'])){$username=$_SESSION['username'];}
else if(!isset($_SESSION['username'])){echo"<script>alert('ยังไม่เข้าสู่ระบบ');window.location='index.php';</script>";exit;}
//ข้อมูลร้าน
$sqlSetting="SELECT * FROM setting";
$resultSetting=mysql_query($sqlSetting)or die(mysql_error());
$rowSetting=mysql_fetch_array($resultSetting);
?>
<body>
<div id="menu">
<div class="welcome">ยินดีต้อนรับคุณ <?=$username?></div>
<ul class="menu">
<? include('mainMenu.php');?>
</ul>
<div style="clear:both;"></div>
</div>
<?
//กำหนดแถวและคอลัมน์
$num_col=1;
$num_row=15;
//เรคคอร์ดที่สิ้นสุด
$page_size=$num_col*$num_row;
//กำหนดค่าเริ่มต้น
$page=isset($_REQUEST['page'])?$_REQUEST['page']:0;
$category_id=base64_decode($_REQUEST['category_id']);
$keyword=isset($_REQUEST['keyword'])?$_REQUEST['keyword']:'';
$status=base64_decode(isset($_REQUEST['status'])?$_REQUEST['status']:'');
//หาจำนวนหน้า
$sql="SELECT COUNT(*) FROM product WHERE category_id='$category_id' AND name LIKE '%$keyword%' AND status LIKE '%$status%'";
$result=mysql_query($sql)or die(mysql_error());
$row=mysql_fetch_array($result);
$num=$row['COUNT(*)'];
$numAll=$num;
//หมายเลขหน้า
$num_page=ceil($num/$page_size);
//เรคคอร์ดที่เริ่ม
$start_record=$page*$page_size;
//เลือกข้อมูล
$sql="SELECT category.id AS catgory_id, category.name AS category_name, product.id AS id, product.name AS name, product.detail AS detail, product.price AS price, product.normal_price AS normal_price, product.discount AS discount, product.image AS image, product.status AS status, product.insert_date AS insert_date FROM category RIGHT JOIN product ON product.category_id=category.id WHERE category_id='$category_id' AND product.name LIKE '%$keyword%' AND status LIKE '%$status%' ORDER BY product.id DESC LIMIT $start_record, $page_size";
$result=mysql_query($sql)or die(mysql_error());
$num=mysql_num_rows($result);
?>
<div style="width:962px;margin:20px auto 0 auto;text-align:right;">
<form action="categoryProduct.php" method="post" name="search">
<input type="button" value="เพิ่มสินค้าใหม่" onclick="window.location='productInsert.php'"/>
<input type="button" value="ทั้งหมด" onclick="window.location='?category_id=<?=base64_encode($category_id)?>&keyword=<?=$keyword?>'"/>
<input type="button" value="ปกติ" onclick="window.location='?category_id=<?=base64_encode($category_id)?>&keyword=<?=$keyword?>&status=<?=base64_encode('ป')?>'"/>
<input type="button" value="ขายดี" onclick="window.location='?category_id=<?=base64_encode($category_id)?>&keyword=<?=$keyword?>&status=<?=base64_encode('ข')?>'"/>
<input type="button" value="หมด" onclick="window.location='?category_id=<?=base64_encode($category_id)?>&keyword=<?=$keyword?>&status=<?=base64_encode('มด')?>'"/>
<input name="category_id" type="hidden" value="<?=base64_encode($category_id)?>" />
<input name="keyword" type="text" id="keyword" value="<?=$keyword?>"/>
<input type="submit" value="ค้นหา"/>
</form>
</div>
<table class="list" style="margin-top:10px;" align="center" cellpadding="10" cellspacing="0" >
<tr>
<th width="60" class="header">รูปภาพ</th>
<th class="header">ชื่อสินค้า</th>
<th width="100" class="header">ราคา</th>
<th width="100" class="header">ส่วนลด</th>
<th width="100" class="header">สถานะ</th>
<th width="150" class="header">จัดการ</th>
</tr>
<?
if($num==0){
?>
<td align="center" colspan="6">ไม่มีข้อมูล</td>
<?
}
for($i=0;$row=mysql_fetch_array($result);$i++){
if($i%$num_col==0){
?>
<tr>
<?
}
?>
<td><div class="product"><img src="../product/<?=$row['image']?>"/></div></td>
<td align="center">
<?=$row['name']?>
<?
$sqlCategory="SELECT * FROM category ";
$resultCategory=mysql_query($sqlCategory) or die(mysql_error());
$rowCategory=mysql_fetch_array($resultCategory);
if($row['category_id']==$rowCategory['id']){
echo $rowCategory['name'];
}
?>
</td>
<td align="center"><?=number_format($row['price'],2)?></td>
<td align="center"><? if($row['discount']>0){echo $row['discount']."%";}else{echo "-";}?></td>
<td align="center"><?=$row['status']?></td>
<td align="center" style="background:#f9f9f9">
<a href="../product-<?=$row['id']."-".rewrite_url($row['name'])?>.html" target="_blank"><img src="image/icon-view-product.png" class="action" title="ดูบนหน้าร้าน"/></a>
<a href="productEdit.php?id=<?=base64_encode($row['id'])?>"><img src="image/icon-pencil.png" class="action" title="แก้ไข"/></a>
<a href="process/product/productDelete.php?id=<?=base64_encode($row['id'])?>" onclick="return confirm('ลบ ?')"><img src="image/icon-bin.png"class="action" title="ลบ"/></a>
</td>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2014-01-18 13:36:36 |
By :
ขอบคุฯครับ |
View :
760 |
Reply :
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ error เลยเหรอครับ
|
|
|
|
|
Date :
2014-01-18 14:00:38 |
By :
{Cyberman} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ครับ ผมไม่ได้ copy มาทั่งหน้า
ผมอยากใช้ช่วยดูบรรทัด ที่ 88-98 ทีครับว่าทำไมมันไม่แสดงซื่อ หมวดหมู่
|
|
|
|
|
Date :
2014-01-18 14:08:41 |
By :
qqq |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
การทดสอบขั้นต้น
Code (SQL)
SELECT * FROM category
เอาไปรันใน phpMyAdmin ดูก่อนว่ามีผลลัพธ์หรือไม่
|
|
|
|
|
Date :
2014-01-18 14:48:49 |
By :
{Cyberman} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ออกอ่ะครับ
|
|
|
|
|
Date :
2014-01-18 15:48:04 |
By :
qqq |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แสดงว่าฐานข้อมูลไม่ถูกต้องครับ
|
|
|
|
|
Date :
2014-01-18 16:12:06 |
By :
{Cyberman} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2014-01-18 16:40:31 |
By :
qqq |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2014-01-18 16:41:11 |
By :
qqq |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SELECT * FROM category
ถ้าเอาไปรัน แล้วไม่เจอแบบนี้ก็แสดงว่าไม่มีข้อมูลแ้ล้วล่ะครับ
|
|
|
|
|
Date :
2014-01-19 09:22:52 |
By :
{Cyberman} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไปที่ phpmyadmin แล้วเข้าไปที่ตาราง category แล้วไปที่ลิงค์ "เปิดดู" แล้ว copy code ไปวางครับ
|
|
|
|
|
Date :
2014-01-19 10:17:26 |
By :
ans |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|