Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > ผู้รู้ช่วยดูโค๊ดการค้นหาให้หน่อยน๊ะค่ะ มัน ERROR อ่ะ



 

ผู้รู้ช่วยดูโค๊ดการค้นหาให้หน่อยน๊ะค่ะ มัน ERROR อ่ะ

 



Topic : 051495



โพสกระทู้ ( 61 )
บทความ ( 0 )



สถานะออฟไลน์




มัน ERROR แบบนี้นะค่ะ Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\Phpbasic\AnimalShop\tesbas.php on line 96




โค๊ดค่ะ



<?
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=tis-620">
<title>สินค้า</title>
<style type="text/css">
<!--
.style1 { font-size: large;
color: #0000FF;
}
.style3 {color: #0000FF}
.style4 {
color: #0000CC;
font-weight: bold;
font-size: x-large;
}
-->
</style>
</head>
<body>
<?
include"./include/connect.php";
?>
<table width="945" align="center">
<tr bgcolor="#FFFF66">
<td colspan="2" bgcolor="#C7FBBF"><div align="center" class="style1">
<p><img src="image/head.gif" width="973" height="200" /></p>
</div></td>
</tr>
<tr width="17" bordercolor="#000000" bgcolor="#000000">
<td width="22" valign="top" bordercolor="#000000" bgcolor="#DBFFB7"><p>
<? include"menu.php"; ?>
</p>
</td>
<td width="911" height="460" valign="top" bordercolor="#000000" bgcolor="#DBFFB7"><p align="center" class="style3">&nbsp;</p>
<p align="center" class="style4">ค้นหาสินค้า</p>
<center>
<form id="form2" name="form2" method="post" action="tesbas.php">
<table width="546" border="0">
<tr>
<th width="214" scope="col">
<label>
ประเภทคำค้น
<select name="search" id="search">
<option value="1">ชื่อสินค้า</option>
<option value="2">ประเภทสินค้า</option>
<option value="3">ยี่ห้อสินค้า</option>
</select>
</label>
</th>
<th width="344" scope="col">
<label>
<input name="name" type="text" id="name" size="40" maxlength="40" />
</label>
<label>
<input type="submit" name="Submit" value="ค้นหา" />
</label>
</th>
</tr>
</table>
</form>
</center>
<p align="center" class="style4">&nbsp;</p>
<p align="center" class="style4">ข้อมูลสินค้า</p>
<center> <table width="800" border="1" bordercolor="#00FF00" bgcolor="#FFFFFF">
<tr>
<th scope="row"><strong>รหัสสินค้า</strong></th>
<td><strong>ชื่อสินค้า</strong></td>
<td><strong>รายละเอียด</strong></td>
<td><strong>ราคาทุน</strong></td>
<td><strong>ราคาเงินสด</strong></td>
<td><strong>ราคาเงินเชื่อ</strong></td>
<td><strong>Min Stock</strong></td>
<td><strong>Max Stock </strong></td>
<td><strong>จำนวนคงเหลือ</strong></td>
<td><strong>หน่วย</strong></td>
<td><strong>ยี่ห้อ</strong></td>
<td><strong>ประเภท</strong></td>
<td>&nbsp;</td>
</tr>
<?
$n=0;
$name=$_POST[name];
if($_POST[search]==1){
$sql="select pro_id,pro_name,pro_detail,pro_cost,pro_cash,pro_credit,pro_minstock,pro_maxstock,pro_stock,pro_unit,bra_name,pdt_name
From product,brand,producttype
WHERE brand.bra_id=product.bra_id
AND producttype.pdt_id=product.pdt_id
AND product.pro_name link '%$name%'
AND product.pro_status='Y'
GROUP BY pro_id";
$result=mysql_db_query($db,$sql);
$num_row=mysql_num_rows($result);
}
else if($_POST[search]==2){
$sql="select pro_id,pro_name,pro_detail,pro_cost,pro_cash,pro_credit,pro_minstock,pro_maxstock,pro_stock,pro_unit,bra_name,pdt_name
From product,brand,producttype
WHERE brand.bra_id=product.bra_id
AND producttype.pdt_id=product.pdt_id
AND product.pdt_name link '%$name%'
AND product.pro_status='Y'
GROUP BY pro_id";
$result=mysql_db_query($db,$sql);
$num_row=mysql_num_rows($result);
}
else if($_POST[search]==3){
$sql="select pro_id,pro_name,pro_detail,pro_cost,pro_cash,pro_credit,pro_minstock,pro_maxstock,pro_stock,pro_unit,bra_name,pdt_name
From product,brand,producttype
WHERE brand.bra_id=product.bra_id
AND producttype.pdt_id=product.pdt_id
AND product.bra_name link '%$name%'
AND product.pro_status='Y'
GROUP BY pro_id";
$result=mysql_db_query($db,$sql);
$num_row=mysql_num_rows($result);
}
if($num_row==""){
$sql="select pro_id,pro_name,pro_detail,pro_cost,pro_cash,pro_credit,pro_minstock,pro_maxstock,pro_stock,pro_unit,bra_name,pdt_name
From product,brand,producttype
WHERE brand.bra_id=product.bra_id
AND producttype.pdt_id=product.pdt_id
AND product.pro_status='Y'
GROUP BY pro_id";
$result=mysql_db_query($db,$sql);
$num_row=mysql_num_rows($result);
}
if($num_row<>0){
//while($read=mysql_fetch_array($result)){
$Per_Page = 5;
if ( !$Page) {
$Page = 1;
}
$Prev_Page =$Page- 1;
$Next_Page = $Page+ 1;
$result = mysql_db_query($db,$sql);
$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 ) )
print "จำนวน $Page มากกว่า $Num_Pages";
$sql .= " LIMIT $Page_start, $Per_Page";
$result = mysql_db_query($db,$sql);

if($Num_Rows<>0)
{
$num=0;


while($read= mysql_fetch_array($result)){
$num++;

$n++;

?>
<tr>
<th height="140" scope="row">

<div align="left">
<?=$read['pro_id']?>
</div></th>
<td>

<div align="left">
<?=$read['pro_name']?>
</div></td>
<td>

<div align="left">
<?=$read['pro_detail']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_cost']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_cash']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_credit']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_minstock']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_maxstock']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_stock']?>
</div></td><td><div align="left">
<?=$read['pro_unit']?>
</div></td>
<td>

<div align="left">
<?=$read['bra_name']?>
</div></td>
<td><div align="left">
<?=$read['pdt_name']?>
</div></td>
<td></a>
<div align="center">
<p><a href="editpro.php?pro_id=<?=$read['pro_id']?>">แก้ไข</a></p>
<p><a href="delpro.php?pro_id=<?=$read['pro_id']?>"onclick="return confirm('ยืนยันลบสินค้า<?=$read['pro_name']?>ออกจากระบบ')">ลบ</a></p></td>
</tr><? }?>
</table>
</center>
<? //แบ่งหน้า?>
<div align="center" >
มี <? echo $Num_Pages; ?> หน้า :
<?
/* สร้างปุ่มย้อนกลับ */
if ( $Prev_Page ){
echo "<a href=\"$PHP_SELF?page=order_buy.php&num=$num++&Page=$Prev_Page\">&lt;&lt; ถอยหลัง </a>";
}
/* สร้างตัวเลขหน้า */
for ( $i=1; $i<=$Num_Pages; $i++ )
{
if ( $i != $Page )
echo "[<a href=\"$PHP_SELF?page=order_buy.php&num=$num++&Page=$i\">$i</a>]";
else
echo " <b>$i</b> ";
}
/* สร้างปุ่มเดินหน้า */
if ( $Page != $Num_Pages ) {
echo "<a href=\"$PHP_SELF?page=order_buy.php&num=$num++&Page=$Next_Page\"> เดินหน้า &gt;&gt;</a>";
?>
<?
}//nums

}//while
?>
</div>


<?
//end select=================================================================

}else{?>
ไม่มีข้อมูล
<? }?>
<p align="center" class="style3">&nbsp;</p>
<p>&nbsp; </p></td>
</tr>
</table>
</body>
</html>



Tag : PHP, Ms Access







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-11-11 00:45:26 By : dekcis View : 772 Reply : 8
 

 

No. 1



โพสกระทู้ ( 11,835 )
บทความ ( 10 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


line 96 อยู่ตรงไหนครับ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-11-11 02:12:41 By : PlaKriM
 


 

No. 2



โพสกระทู้ ( 61 )
บทความ ( 0 )



สถานะออฟไลน์


มัน ERROR แบบนี้นะค่ะ Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\Phpbasic\AnimalShop\tesbas.php on line 96



<?
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=tis-620">
<title>สินค้า</title>
<style type="text/css">
<!--
.style1 { font-size: large;
color: #0000FF;
}
.style3 {color: #0000FF}
.style4 {
color: #0000CC;
font-weight: bold;
font-size: x-large;
}
-->
</style>
</head>
<body>
<?
include"./include/connect.php";
?>
<table width="945" align="center">
<tr bgcolor="#FFFF66">
<td colspan="2" bgcolor="#C7FBBF"><div align="center" class="style1">
<p><img src="image/head.gif" width="973" height="200" /></p>
</div></td>
</tr>
<tr width="17" bordercolor="#000000" bgcolor="#000000">
<td width="22" valign="top" bordercolor="#000000" bgcolor="#DBFFB7"><p>
<? include"menu.php"; ?>
</p>
</td>
<td width="911" height="460" valign="top" bordercolor="#000000" bgcolor="#DBFFB7"><p align="center" class="style3">&nbsp;</p>
<p align="center" class="style4">ค้นหาสินค้า</p>
<center>
<form id="form2" name="form2" method="post" action="tesbas.php">
<table width="546" border="0">
<tr>
<th width="214" scope="col">
<label>
ประเภทคำค้น
<select name="search" id="search">
<option value="1">ชื่อสินค้า</option>
<option value="2">ประเภทสินค้า</option>
<option value="3">ยี่ห้อสินค้า</option>
</select>
</label>
</th>
<th width="344" scope="col">
<label>
<input name="name" type="text" id="name" size="40" maxlength="40" />
</label>
<label>
<input type="submit" name="Submit" value="ค้นหา" />
</label>
</th>
</tr>
</table>
</form>
</center>
<p align="center" class="style4">&nbsp;</p>
<p align="center" class="style4">ข้อมูลสินค้า</p>
<center> <table width="800" border="1" bordercolor="#00FF00" bgcolor="#FFFFFF">
<tr>
<th scope="row"><strong>รหัสสินค้า</strong></th>
<td><strong>ชื่อสินค้า</strong></td>
<td><strong>รายละเอียด</strong></td>
<td><strong>ราคาทุน</strong></td>
<td><strong>ราคาเงินสด</strong></td>
<td><strong>ราคาเงินเชื่อ</strong></td>
<td><strong>Min Stock</strong></td>
<td><strong>Max Stock </strong></td>
<td><strong>จำนวนคงเหลือ</strong></td>
<td><strong>หน่วย</strong></td>
<td><strong>ยี่ห้อ</strong></td>
<td><strong>ประเภท</strong></td>
<td>&nbsp;</td>
</tr>
<?
$n=0;
$name=$_POST[name];
if($_POST[search]==1){
$sql="select pro_id,pro_name,pro_detail,pro_cost,pro_cash,pro_credit,pro_minstock,pro_maxstock,pro_stock,pro_unit,bra_name,pdt_name
From product,brand,producttype
WHERE brand.bra_id=product.bra_id
AND producttype.pdt_id=product.pdt_id
AND product.pro_name link '%$name%'
AND product.pro_status='Y'
GROUP BY pro_id";
$result=mysql_db_query($db,$sql);
$num_row=mysql_num_rows($result); // line 96 ค่ะ
}
else if($_POST[search]==2){
$sql="select pro_id,pro_name,pro_detail,pro_cost,pro_cash,pro_credit,pro_minstock,pro_maxstock,pro_stock,pro_unit,bra_name,pdt_name
From product,brand,producttype
WHERE brand.bra_id=product.bra_id
AND producttype.pdt_id=product.pdt_id
AND product.pdt_name link '%$name%'
AND product.pro_status='Y'
GROUP BY pro_id";
$result=mysql_db_query($db,$sql);
$num_row=mysql_num_rows($result);
}
else if($_POST[search]==3){
$sql="select pro_id,pro_name,pro_detail,pro_cost,pro_cash,pro_credit,pro_minstock,pro_maxstock,pro_stock,pro_unit,bra_name,pdt_name
From product,brand,producttype
WHERE brand.bra_id=product.bra_id
AND producttype.pdt_id=product.pdt_id
AND product.bra_name link '%$name%'
AND product.pro_status='Y'
GROUP BY pro_id";
$result=mysql_db_query($db,$sql);
$num_row=mysql_num_rows($result);
}
if($num_row==""){
$sql="select pro_id,pro_name,pro_detail,pro_cost,pro_cash,pro_credit,pro_minstock,pro_maxstock,pro_stock,pro_unit,bra_name,pdt_name
From product,brand,producttype
WHERE brand.bra_id=product.bra_id
AND producttype.pdt_id=product.pdt_id
AND product.pro_status='Y'
GROUP BY pro_id";
$result=mysql_db_query($db,$sql);
$num_row=mysql_num_rows($result);
}
if($num_row<>0){
//while($read=mysql_fetch_array($result)){
$Per_Page = 5;
if ( !$Page) {
$Page = 1;
}
$Prev_Page =$Page- 1;
$Next_Page = $Page+ 1;
$result = mysql_db_query($db,$sql);
$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 ) )
print "จำนวน $Page มากกว่า $Num_Pages";
$sql .= " LIMIT $Page_start, $Per_Page";
$result = mysql_db_query($db,$sql);

if($Num_Rows<>0)
{
$num=0;


while($read= mysql_fetch_array($result)){
$num++;

$n++;

?>
<tr>
<th height="140" scope="row">

<div align="left">
<?=$read['pro_id']?>
</div></th>
<td>

<div align="left">
<?=$read['pro_name']?>
</div></td>
<td>

<div align="left">
<?=$read['pro_detail']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_cost']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_cash']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_credit']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_minstock']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_maxstock']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_stock']?>
</div></td><td><div align="left">
<?=$read['pro_unit']?>
</div></td>
<td>

<div align="left">
<?=$read['bra_name']?>
</div></td>
<td><div align="left">
<?=$read['pdt_name']?>
</div></td>
<td></a>
<div align="center">
<p><a href="editpro.php?pro_id=<?=$read['pro_id']?>">แก้ไข</a></p>
<p><a href="delpro.php?pro_id=<?=$read['pro_id']?>"onclick="return confirm('ยืนยันลบสินค้า<?=$read['pro_name']?>ออกจากระบบ')">ลบ</a></p></td>
</tr><? }?>
</table>
</center>
<? //แบ่งหน้า?>
<div align="center" >
มี <? echo $Num_Pages; ?> หน้า :
<?
/* สร้างปุ่มย้อนกลับ */
if ( $Prev_Page ){
echo "<a href=\"$PHP_SELF?page=order_buy.php&num=$num++&Page=$Prev_Page\">&lt;&lt; ถอยหลัง </a>";
}
/* สร้างตัวเลขหน้า */
for ( $i=1; $i<=$Num_Pages; $i++ )
{
if ( $i != $Page )
echo "[<a href=\"$PHP_SELF?page=order_buy.php&num=$num++&Page=$i\">$i</a>]";
else
echo " <b>$i</b> ";
}
/* สร้างปุ่มเดินหน้า */
if ( $Page != $Num_Pages ) {
echo "<a href=\"$PHP_SELF?page=order_buy.php&num=$num++&Page=$Next_Page\"> เดินหน้า &gt;&gt;</a>";
?>
<?
}//nums

}//while
?>
</div>


<?
//end select=================================================================

}else{?>
ไม่มีข้อมูล
<? }?>
<p align="center" class="style3">&nbsp;</p>
<p>&nbsp; </p></td>
</tr>
</table>
</body>
</html>
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-11-11 09:33:31 By : dekcis
 

 

No. 3



โพสกระทู้ ( 1,095 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


$sql="select pro_id,pro_name,pro_detail,pro_cost,pro_cash,pro_credit,pro_minstock,pro_maxstock,pro_stock,pro_unit,bra_name,pdt_name
From product,brand,producttype
WHERE brand.bra_id=product.bra_id
AND producttype.pdt_id=product.pdt_id
AND product.pro_name link '%$name%'
AND product.pro_status='Y'
GROUP BY pro_id";

ผิดที่
link = LIKE

หรือไม่ก็ลอง echo $sql ออกมานำไปรันที่ phpmyadmin
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-11-11 09:38:11 By : ไวยวิทย์
 


 

No. 4



โพสกระทู้ ( 61 )
บทความ ( 0 )



สถานะออฟไลน์


ขอบคุณ คุณ Nico ค่ะ ลองแก้แล้วค่ะ แต่มันก้อ ERROR อีกค่ะ Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\Phpbasic\AnimalShop\tesbas.php on line 107




<?
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=tis-620">
<title>สินค้า</title>
<style type="text/css">
<!--
.style1 { font-size: large;
color: #0000FF;
}
.style3 {color: #0000FF}
.style4 {
color: #0000CC;
font-weight: bold;
font-size: x-large;
}
-->
</style>
</head>
<body>
<?
include"./include/connect.php";
?>
<table width="945" align="center">
<tr bgcolor="#FFFF66">
<td colspan="2" bgcolor="#C7FBBF"><div align="center" class="style1">
<p><img src="image/head.gif" width="973" height="200" /></p>
</div></td>
</tr>
<tr width="17" bordercolor="#000000" bgcolor="#000000">
<td width="22" valign="top" bordercolor="#000000" bgcolor="#DBFFB7"><p>
<? include"menu.php"; ?>
</p>
</td>
<td width="911" height="460" valign="top" bordercolor="#000000" bgcolor="#DBFFB7"><p align="center" class="style3">&nbsp;</p>
<p align="center" class="style4">ค้นหาสินค้า</p>
<center>
<form id="form2" name="form2" method="post" action="tesbas.php">
<table width="546" border="0">
<tr>
<th width="214" scope="col">
<label>
ประเภทคำค้น
<select name="search" id="search">
<option value="1">ชื่อสินค้า</option>
<option value="2">ประเภทสินค้า</option>
<option value="3">ยี่ห้อสินค้า</option>
</select>
</label>
</th>
<th width="344" scope="col">
<label>
<input name="name" type="text" id="name" size="40" maxlength="40" />
</label>
<label>
<input type="submit" name="Submit" value="ค้นหา" />
</label>
</th>
</tr>
</table>
</form>
</center>
<p align="center" class="style4">&nbsp;</p>
<p align="center" class="style4">ข้อมูลสินค้า</p>
<center> <table width="800" border="1" bordercolor="#00FF00" bgcolor="#FFFFFF">
<tr>
<th scope="row"><strong>รหัสสินค้า</strong></th>
<td><strong>ชื่อสินค้า</strong></td>
<td><strong>รายละเอียด</strong></td>
<td><strong>ราคาทุน</strong></td>
<td><strong>ราคาเงินสด</strong></td>
<td><strong>ราคาเงินเชื่อ</strong></td>
<td><strong>Min Stock</strong></td>
<td><strong>Max Stock </strong></td>
<td><strong>จำนวนคงเหลือ</strong></td>
<td><strong>หน่วย</strong></td>
<td><strong>ยี่ห้อ</strong></td>
<td><strong>ประเภท</strong></td>
<td>&nbsp;</td>
</tr>
<?
$n=0;
$name=$_POST[name];
if($_POST[search]==1){
$sql="select pro_id,pro_name,pro_detail,pro_cost,pro_cash,pro_credit,pro_minstock,pro_maxstock,pro_stock,pro_unit,bra_name,pdt_name
From product,brand,producttype
WHERE brand.bra_id=product.bra_id
AND producttype.pdt_id=product.pdt_id
AND product.pro_name like'%$name%'
AND product.pro_status='Y'
GROUP BY pro_id";
$result=mysql_db_query($db,$sql);
$num_row=mysql_num_rows($result);
}
else if($_POST[search]==2){
$sql="select pro_id,pro_name,pro_detail,pro_cost,pro_cash,pro_credit,pro_minstock,pro_maxstock,pro_stock,pro_unit,bra_name,pdt_name
From product,brand,producttype
WHERE brand.bra_id=product.bra_id
AND producttype.pdt_id=product.pdt_id
AND product.pdt_name like'%$name%'
AND product.pro_status='Y'
GROUP BY pro_id";
$result=mysql_db_query($db,$sql);
$num_row=mysql_num_rows($result); line 107
}
else if($_POST[search]==3){
$sql="select pro_id,pro_name,pro_detail,pro_cost,pro_cash,pro_credit,pro_minstock,pro_maxstock,pro_stock,pro_unit,bra_name,pdt_name
From product,brand,producttype
WHERE brand.bra_id=product.bra_id
AND producttype.pdt_id=product.pdt_id
AND product.bra_name like'%$name%'
AND product.pro_status='Y'
GROUP BY pro_id";
$result=mysql_db_query($db,$sql);
$num_row=mysql_num_rows($result);
}
if($num_row==""){
$sql="select pro_id,pro_name,pro_detail,pro_cost,pro_cash,pro_credit,pro_minstock,pro_maxstock,pro_stock,pro_unit,bra_name,pdt_name
From product,brand,producttype
WHERE brand.bra_id=product.bra_id
AND producttype.pdt_id=product.pdt_id
AND product.pro_status='Y'
GROUP BY pro_id";
$result=mysql_db_query($db,$sql);
$num_row=mysql_num_rows($result);
}
if($num_row<>0){
//while($read=mysql_fetch_array($result)){
$Per_Page = 5;
if ( !$Page) {
$Page = 1;
}
$Prev_Page =$Page- 1;
$Next_Page = $Page+ 1;
$result = mysql_db_query($db,$sql);
$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 ) )
print "จำนวน $Page มากกว่า $Num_Pages";
$sql .= " LIMIT $Page_start, $Per_Page";
$result = mysql_db_query($db,$sql);

if($Num_Rows<>0)
{
$num=0;


while($read= mysql_fetch_array($result)){
$num++;

$n++;

?>
<tr>
<th height="140" scope="row">

<div align="left">
<?=$read['pro_id']?>
</div></th>
<td>

<div align="left">
<?=$read['pro_name']?>
</div></td>
<td>

<div align="left">
<?=$read['pro_detail']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_cost']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_cash']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_credit']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_minstock']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_maxstock']?>
</div></td>
<td>
<div align="right">
<?=$read['pro_stock']?>
</div></td><td><div align="left">
<?=$read['pro_unit']?>
</div></td>
<td>

<div align="left">
<?=$read['bra_name']?>
</div></td>
<td><div align="left">
<?=$read['pdt_name']?>
</div></td>
<td></a>
<div align="center">
<p><a href="editpro.php?pro_id=<?=$read['pro_id']?>">แก้ไข</a></p>
<p><a href="delpro.php?pro_id=<?=$read['pro_id']?>"onclick="return confirm('ยืนยันลบสินค้า<?=$read['pro_name']?>ออกจากระบบ')">ลบ</a></p></td>
</tr><? }?>
</table>
</center>
<? //แบ่งหน้า?>
<div align="center" >
มี <? echo $Num_Pages; ?> หน้า :
<?
/* สร้างปุ่มย้อนกลับ */
if ( $Prev_Page ){
echo "<a href=\"$PHP_SELF?page=order_buy.php&num=$num++&Page=$Prev_Page\">&lt;&lt; ถอยหลัง </a>";
}
/* สร้างตัวเลขหน้า */
for ( $i=1; $i<=$Num_Pages; $i++ )
{
if ( $i != $Page )
echo "[<a href=\"$PHP_SELF?page=order_buy.php&num=$num++&Page=$i\">$i</a>]";
else
echo " <b>$i</b> ";
}
/* สร้างปุ่มเดินหน้า */
if ( $Page != $Num_Pages ) {
echo "<a href=\"$PHP_SELF?page=order_buy.php&num=$num++&Page=$Next_Page\"> เดินหน้า &gt;&gt;</a>";
?>
<?
}//nums

}//while
?>
</div>


<?
//end select=================================================================

}else{?>
ไม่มีข้อมูล
<? }?>
<p align="center" class="style3">&nbsp;</p>
<p>&nbsp; </p></td>
</tr>
</table>
</body>
</html>
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-11-11 09:56:03 By : dekcis
 


 

No. 5

Guest


ลองนำ Query String ไปลองทดสอบที่ตัว Database ดูก่อนนะครับว่า มีข้อมูลออกมาหรือไม่ ?
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-11-11 16:06:31 By : สุรชัย
 


 

No. 6



โพสกระทู้ ( 64 )
บทความ ( 0 )



สถานะออฟไลน์


ตอบความคิดเห็นที่ : 5 เขียนโดย : สุรชัย เมื่อวันที่ 2010-11-11 16:06:31
รายละเอียดของการตอบ ::
.อืมเราก้อว่ายังนั้นล่ะถูกต้องแล้วเห็นด้วยพี่น้อง

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-11-11 16:33:33 By : penpimonmink
 


 

No. 7



โพสกระทู้ ( 64 )
บทความ ( 0 )



สถานะออฟไลน์


แนะนำให้ศึกษา การ query SQL ใหม่นะคะ ที่นี้นะคะ มีที่เราให้ได้หมดล่ะค่ะhttps://www.thaicreate.com/php/php-sql-syntax.html
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-11-11 16:35:29 By : penpimonmink
 


 

No. 8



โพสกระทู้ ( 61 )
บทความ ( 0 )



สถานะออฟไลน์


ขอบคุณทุกคนนะค่ะ ตอนนี้ำทำได้แล้วค่ะ พอดีผิดตรง SQL ค่ะ ขอบคุณมากๆๆๆๆๆนะค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-11-11 19:03:58 By : dekcis
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ผู้รู้ช่วยดูโค๊ดการค้นหาให้หน่อยน๊ะค่ะ มัน ERROR อ่ะ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 01
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่