|
|
|
ช่วยหน่อยครับ ไม่รู้จะพึ่งใครแล้ว มีปัญหาเรื่องการทำแบ่ง page หลาย ๆ หน้าครับ พออัพขึ้น host แล้ว หน้ามันไม่เปลี่ยน |
|
|
|
|
|
|
|
คือหน้าเนี้ย ผมไม่ได้ทำเองนะครับ ยิ่งทำยิ่งงง
ยิ่งแก้ผมยิ่งงง เพราะไม่ได้มีความรู้ด้านนี้เท่าไหร่ (ไม่ได้เป็น programmer)
แบบว่า มันมีหน้าแสดงสินค้าทั้งหมดครับ แล้วสินค้ามันเยอะมาก ๆ ก็ต้องแบ่งเป็นหลาย ๆ หน้า
ตอนที่แสดงผลใน Localhost มันก็เปลี่ยนหน้าได้ปกติ หมายความว่า กดเลข 2 3 4 5 1 พวกนี้มันก็แสดงข้อมูลไปตามแต่ละหน้า
แต่ว่า พออัพขึ้นไปที่ Host แล้ว จะคลิ๊กไปที่เลขไหน ก็ไม่เปลี่ยนไปเลยครับ ข้อมูลยังแสดงหน้าเดิมตลอด
ผมโทรคุยกับช่างเทคนิคของ Host เค้าบอกว่า มันน่าจะมาจาก การดึงตัวแปร Page ของผม
แต่เค้าก็ยังแก้ให้ผมไม่่ได้
ช่วยผมด้วยครับ จะขอบคุณมาก
Code (VB.NET)
<?
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>::: INDEX HELMET ONLINE-STORE :::</title>
<link href="css/styles.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body,td,th {
color: #000000;
font-family: Microsoft Sans Serif, MS Sans Serif, sans-serif;
}
a:link {
color: #FF0000;
text-decoration: none;
}
a:hover {
color: #6600FF;
text-decoration: none;
}
body {
background-image: url(image/bg.gif);
}
.style11 {font-size: 14px; color: #000000; }
.style12 {font-size: 14px}
a:active {
color: #FF0000;
text-decoration: none;
}
.style13 {font-size: 16px; }
.style16 {
font-size: 18px;
color: #FFFFFF;
font-weight: bold;
}
.style18 {
font-size: 16px;
font-weight: bold;
}
a:visited {
text-decoration: none;
}
-->
</style>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<title>::: INDEX HELMET ONLINE-STORE :::</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="0" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FFFFFF"> <table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#000000">
<?php require_once('head.php'); ?> </td>
</tr>
<tr>
<td><table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#000000">
<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" align="center" valign="top">
<table width="415" border="0" align="center" bordercolor="#CCCCCC" bgcolor="#0099CC">
<tr>
<td><strong> </strong>
<table width="418" height="22" border="0" align="center" cellpadding="0" cellspacing="0" id="Table_01">
<tr>
<td width="8"> </td>
<td width="389"><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"> </td>
</tr>
</table>
<strong> </strong></td>
</tr>
<tr>
<td width="378" bgcolor="#FFFFFF">
<?
//============ เลือกรายการสินค้าออกมาแสดง
$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="140" 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>
ปกติ
<?="(".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='$_SERVER[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='$_SERVER[PHP_SELF]?Page=$i&CatID=$_GET[CatID]' class='boxtext'>$i</a> ]";
else
echo "<b> $i </b>";
}
/*สร้างปุ่มเดินหน้า */
if($Page!=$Num_Pages)
echo " <a href ='$_SERVER[PHP_SELF]?Page=$Next_Page&CatID=$_GET[CatID]' class='boxtext'> Next >> </a>";
?>
</td>
</tr>
</table></td>
</tr>
</table>
</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
|
|
|
|
|
|
Date :
2011-06-28 10:41:36 |
By :
Hedgiesman |
View :
732 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$sql .= " order by ProductID DESC LIMIT $Page_start , $Per_Page";
echo $sql;
ลองดูว่ามันได้ค่าอะไรออกมาครับ
Go to : PHP MySQL List Record Paging/Pagination
|
|
|
|
|
Date :
2011-06-28 13:18:25 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|