|
|
|
สอบถามระบบ เกี่ยวกับระบบตระกร้าสินค้าค่ะ ที่เคยแจกไว้น่ะค่ะ ตอนนี้ติดปัญหามากๆเลย รบกวนทีค่ะ |
|
|
|
|
|
|
|
สืบเนื่องจากกระทู้นี้ค่ะ
https://www.thaicreate.com/php/forum/021297.html
คือโหลดมาและติดปัญหาตรงเรื่องของการ กดปุ่ม Next น่ะค่ะ กดไม่ได้ กดแล้วไม่ไป อยู่หน้าเืดิม คือเอาไว้ใน Server สำรองแล้วกดได้ แต่พอลง Server จริงแล้วกดไม่ได้อ่ะค่ะ รบกวนทีค่ะ ใครพอรู้บ้างคะ ขอบคุณค่ะ
โค๊ดค่ะ
Code (PHP)
<?
ob_start();
//============ Start Session และทำการเรียก Function ติดต่อฐานข้อมูล
session_start();
require("connect/connect.php");
require("connect/function.php");
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<title>::: CROCHET-PATTERN.COM :::</title>
<link href="css/styles.css" rel="stylesheet" type="text/css">
</head>
<body topmargin="0">
<table width="778" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FFFFFF"> <table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<?php require_once('head.php'); ?>
</td>
</tr>
<tr>
<td><table width="100%" border="1" cellpadding="0" cellspacing="0" bordercolor="#f2f2f6" bgcolor="#FFFFFF">
<tr>
<td width="23%" valign="top"> <?php require_once('menuleft.php'); ?> <br> </td>
<td width="54%" valign="top">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="417" height="310" valign="top">
<table width="415" border="0" align="center">
<tr>
<td><strong> </strong>
<table width="418" height="22" border="0" align="center" cellpadding="0" cellspacing="0" id="Table_01">
<tr>
<td width="8"> <img src="image/menu01.jpg" width="8" height="22" alt=""></td>
<td width="389" background="image/menu02.jpg"><div align="center"><strong>
<?
//============ เลือกว่าเป็นหมวดอะไร
$resultHeadPro=select("category","where 1=1 and CatID='".$_GET["CatID"]."'");
if(!$resultHeadPro)
{
//header("location:index.php");
}
if($_GET["CatID"]!="")
{
echo "(".$resultHeadPro["CategoryName"].")";
}
else
{
echo "(แสดงทั้งหมด)";
}
?>
</strong> </div></td>
<td width="9"> <img src="image/menu03.jpg" width="9" height="22" alt=""></td>
</tr>
</table>
<strong> </strong></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td width="378">
<?
//============ เลือกรายการสินค้าออกมาแสดง
$condition="";
if($_GET["CatID"] <> "")
{
$condition="and CatID='$_GET[CatID]' ";
}
echo"<table align=center><tr>";
$sql = "select * from product where 1=1 $condition ";
/* ตั้งค่า แสดงผลต่อหน้า $Per_Page */
$Per_Page =8;
if(!$Page)
$Page=1;
//============ คำนวณจำนวนหน้า
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$result=mysql_query($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 "<center><b>จำนวน $Page มากกว่า $Num_Pages ยังไม่มีข้อความ<b></center>";
$sql .= " order by ProductID DESC LIMIT $Page_start , $Per_Page";
//ส่วนแสดงผล
$i=0;
$query = mysql_query($sql);
While($resutNewPro= mysql_fetch_array($query)){
$i++;
echo "<td>";
?>
<table width="202" height="105" border="0" cellpadding="3" cellspacing="10">
<tr>
<td height="60" valign="top"><div align="center"><a href="detail.php?CatID=<?=$resutNewPro["CatID"];?>&ProductID=<?=$resutNewPro["ProductID"];?>"><img src="picture/<?=$resutNewPro["Picture"];?>" width="140" height="105" border="0"></a></div></td>
</tr>
<tr>
<td valign="top"><div align="center"> <a href="detail.php?CatID=<?=$resutNewPro["CatID"];?>&ProductID=<?=$resutNewPro["ProductID"];?>">
<?=$resutNewPro["ProductName"];?>
</a><br>
ปกติ
<?="(<s>".number_format($resutNewPro["PriceNormal"], 2,'.',',')."</s>";?>
บาท) <br>
<font color="#FF0000"><strong>พิเศษ</strong></font>
<?="(".number_format($resutNewPro["Price"], 2,'.',',');?>
บาท)<br>
ค่าจัดส่ง
<?="(".number_format($resutNewPro["PriceSend"], 2,'.',',');?>
บาท)</div></td>
</tr>
</table>
<?
//============ แสดงแถวละ สอง
echo"</td>";
if(($i)%2==0)
{
echo"</tr>";
}
else
{
echo "<td>";
}
}
echo"</tr></table>";
if($i==0)
{
echo "<strong><center><font color=red>ไม่มีรายการสินค้า</font></center></strong>";
}
?>
<hr width="98%" color="#f2f2f6">
<table width="376" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="183" colspan="10" class="boxtext">จำนวน
<?=$Page;?>
หน้า <b>
<?=$Num_Pages;?>
</b> (
<?= $Num_Rows;?>
รายการ) </td>
</tr>
</table>
<table width="98%" border="0" cellpadding="1" cellspacing="1">
<tr>
<td>
<?/* สร้างปุ่มย้อนกลับ */
if($Prev_Page)
echo " <a href='$PHP_SELF?Page=$Prev_Page&CatID=$_GET[CatID]' class='boxtext'><< Back </a> ";
for($i=1; $i<$Num_Pages; $i++){
if($i != $Page)
echo " [ <a href='$PHP_SELF?Page=$i&CatID=$_GET[CatID]' class='boxtext'>$i</a> ]";
else
echo "<b> $i </b>";
}
/*สร้างปุ่มเดินหน้า */
if($Page!=$Num_Pages)
echo " <a href ='$PHP_SELF?Page=$Next_Page&CatID=$_GET[CatID]' class='boxtext'> Next >> </a>";
?>
</td>
</tr>
</table></td>
</tr>
</table>
<p class="style59"> </p>
<p class="style59"> </p>
<p class="style59"> </p></td>
</tr>
</table></td>
<td width="23%" valign="top"> <?php require_once('menuright.php'); ?> </td>
</tr>
<tr>
<td colspan="3" valign="top">
<?php require_once('down.php'); ?>
</td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
Tag : PHP, MySQL, HTML/CSS, Ajax, CakePHP, Web (ASP.NET)
|
|
|
|
|
|
Date :
2012-01-25 15:31:54 |
By :
นารีรัตน์ |
View :
1081 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่หายค่ะ คุณวิน ช่วยด้วยนะคะ ทำทุกอย่างได้แล้วเหลือ ก็ไอ้ปุ่ม Next นี้อ่ะค่ะ จะเสร็จแล้ว
product.php?Page=2&CatID=2
มันไม่แสดงอ่ะค่ะ
|
|
|
|
|
Date :
2012-01-25 15:45:59 |
By :
นารีรัตน์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยทีค่ะ แงแง
|
|
|
|
|
Date :
2012-01-25 16:47:18 |
By :
นารีรัตน์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
if(!$_GET["Page"])
{
$Page=1;
}
else
{
$Page=$_GET["Page"];
}
|
|
|
|
|
Date :
2012-01-25 17:39:28 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
กรี๊ดดดดดดดดดดดดดดดด หายแล้ว
ขอบคุณพี่ mr.win มากๆ ค่ะ
|
|
|
|
|
Date :
2012-01-25 22:39:28 |
By :
นารีรัตน์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|