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,038

HOME > PHP > PHP Forum > จากโค๊กเรียงข้อมูล เอามาทำแบบแบ่งหน้าแล้วเกิด error นะครับ...



 

จากโค๊กเรียงข้อมูล เอามาทำแบบแบ่งหน้าแล้วเกิด error นะครับ...

 



Topic : 025930



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



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




จากโค๊ด การเรียงข้อมูล Ajax List Record (PHP+MySQL & ASP+Access) เป็นตัวอย่างการใช้ Ajax ในการดึงข้อมูล (List Record) จากฐานข้อมูลมาแสดงผล

https://www.thaicreate.com/tutorial/ajax-list-record.html

ผมเอามาต่อด้วยโค๊ดแบ่งหน้า พอกดไปหน้าต่อไป เช่นหน้า 2 มันทำงานไม่ได้ครับ...เกิด Error นะครับ

Error Query [SELECT * FROM tb_cmpdurable_brand INNER JOIN tb_cmpdurable_type ON tb_cmpdurable_brand.type_id = tb_cmpdurable_type.type_id ORDER BY ASC LIMIT 15, 15]

------------------------------------------------------------------------------------------
จากโค๊ด..อ้างอิงจาก AjaxPHPListRecord1.php (https://www.thaicreate.com/tutorial/ajax-list-record.html)
---------------------------------------------------------
<?php
include ("../config/configDefineDurable.php");
include ("../config/connectDB.php");
?>
<html>
<head>
<title>:: <?php echo TITLE ?> | Master Data -> Brand / Model | ::</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<meta name="Author : <?php echo AUTHOR ?>">
<link href="../css/styleCmpDurableDB.css" rel="stylesheet" type="text/css" />
<script type="text/JavaScript" src="../script/masterData.js"></script>
<script language="JavaScript">
var HttPRequest = false;

function doCallAjax(Sort) {
HttPRequest = false;
if (window.XMLHttpRequest) { // Mozilla, Safari,...
HttPRequest = new XMLHttpRequest();
if (HttPRequest.overrideMimeType) {
HttPRequest.overrideMimeType('text/html');
}
} else if (window.ActiveXObject) { // IE
try {
HttPRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
HttPRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
}
if (!HttPRequest) {
alert('Cannot create XMLHTTP instance');
return false;
}
var url = 'masterData=&brandModelSortData.php';
var pmeters = 'mySort='+Sort;
HttPRequest.open('POST',url,true);
HttPRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
HttPRequest.setRequestHeader("Content-length", pmeters.length);
HttPRequest.setRequestHeader("Connection", "close");
HttPRequest.send(pmeters);
HttPRequest.onreadystatechange = function()
{
if(HttPRequest.readyState == 3) // Loading Request
{
document.getElementById("mySpanSort").innerHTML = "Now is Loading...";
}

if(HttPRequest.readyState == 4) // Return Request
{
document.getElementById("mySpanSort").innerHTML = HttPRequest.responseText;
}
}
}
</script>
<style type="text/css">
<!--
body {
margin-top: 30px;
}
-->
</style>
<body Onload="JavaScript:doCallAjax('brand_id');">
<span id="mySpanSort"></span>
</body>
</html>


---------------------------------------------------------
จากโค๊ด..อ้างอิงจาก AjaxPHPListRecord2.php (https://www.thaicreate.com/tutorial/ajax-list-record.html)
---------------------------------------------------------
<?php
include ("../config/connectDB.php");


$strSort = $_POST["mySort"];

if(isset($_GET['page'])){
$current_page= $_GET['page'];
}
else{
$current_page=1;
}
$page_size=15; // กำหนดจะให้แสดงกี่บรรทัดต่อหน้า
$start_row = ($current_page- 1) * $page_size ;


$strSQL = "SELECT * FROM tb_cmpdurable_brand
INNER JOIN tb_cmpdurable_type ON tb_cmpdurable_brand.type_id = tb_cmpdurable_type.type_id
ORDER BY $strSort ASC
LIMIT $start_row, $page_size";

$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<body>
<form action="masterData=&DataCHK.php" name="formMasterData" method="POST" id="formMasterData">
<table width="67%" border="0" align="center" cellpadding="0" cellspacing="3">
<tr>
<td width="12%">Type : </td>
<td width="40%">Brand / Model : </td>
<td width="41%">Description : </td>
<td width="7%" rowspan="2">
<input type="hidden" name="submition" value="">
<img src="../images/icon/i_normal/i_saveData-normal.jpg" width="31" height="47" border="0" class="i_icon" onClick="javascript:doCHKData('SaveBrand');" onMouseOver="this.src='../images/icon/i_over/i_saveData-over.jpg'" onMouseOut="this.src='../images/icon/i_normal/i_saveData-normal.jpg'" /></td>
</tr>
<tr>
<td>
<select name="selectType" class="listMenuDataType_Status" tabindex="1">
<option></option>
<?php
$sqlType ="SELECT * FROM tb_cmpdurable_type ORDER BY type_id ASC";
$resultType = mysql_query($sqlType ) or die ("$sql_Error");
while($rowType = mysql_fetch_array($resultType)){
?>
<option value="<?php echo $rowType[type_id];?>"><?php echo $rowType[type_desc];?></option>
<?php } ?>
</select>
</td>
<td><input name="textBrand" type="text" class="listMenuDataComputerName" id="textBrand" tabindex="2" /></td>
<td><input name="textDescription" type="text" class="listMenuDataComputerName" id="textDescription" tabindex="3" /></td>
</tr>
</table>
<br>
<table width="67%" border="0" align="center">
<tr>
<th width="12%" align="left">Type&nbsp;<a href="JavaScript:doCallAjax('type_desc')"><img src="../images/icon/arrow_d.gif" border="0" /></a></th>
<th width="40%" align="left">Brand Name&nbsp;<a href="JavaScript:doCallAjax('brandname')"><img src="../images/icon/arrow_d.gif" border="0" /></a></th>
<th width="48%" align="left">Description&nbsp;<a href="JavaScript:doCallAjax('description')"><img src="../images/icon/arrow_d.gif" border="0" /></a></th>
</tr>
<?PHP
while($objResult = mysql_fetch_array($objQuery)){
if($bg=="#F1F1F1"){
$bg = "#EAEAEA";
}else{
$bg = "#F1F1F1";
}
?>
<tr bgcolor=<?=$bg?>>
<td><?=$objResult["type_desc"];?></td>
<td><?=$objResult["brandname"];?></td>
<td><?=$objResult["description"];?></td>
</tr>
<?PHP } ?>
<tr>
<td colspan="3">

<table width="100%" border="0" cellspacing="0" cellpadding="0" class="sorttable">
<tr>
<td width="38%" height="22">
<!------ แสดงผลจำนวนเรคคอร์ดของข้อมูล จำนวนหน้าและลิงค์หน้าต่อ ๆไป ------>
<?
// จำนวนแถวทั้งหมด
$result = mysql_query("SELECT COUNT(*) FROM tb_cmpdurable_brand;");
// $result = mysql_query($sql);
$num_rows = mysql_result($result,0,0);

// จำนวนเพจทั้งหมด
$num_pages = ceil($num_rows/$page_size);

$group_size=3; // จำนวนกลุ่มของหน้าทั้งหมด
$current_group = ceil($current_page/$group_size);

echo "<span style=\"color:#999999;font-size:11px;\">total</span><span style=\"color:#FF3300;font-size:12px;font-weight:bold;\">&nbsp;$num_rows&nbsp;</span><span style=\"color:#999999;font-size:11px;\">page</span>&nbsp;&nbsp;";
echo "<span style=\"color:#999999;font-size:11px;\">|&nbsp;&nbsp;</span><span style=\"font-family:Tahoma;color:#CC0000;font-size:12px;font-weight:bold;\">$current_page</span><span style=\"color:#999999;font-size:11px;\">/</span><span style=\"font-family:Tahoma;color:#333333;font-size:12px;font-weight:bold;\">$num_pages</span><span style=\"color:#999999;font-size:11px;\"></span>";

echo "&nbsp;&nbsp;&nbsp&nbsp;";
if($current_group > 1){
// กลุ่มหมายเลขเพจและลิงค์ Previous
$last_page_of_last_group = ($current_group - 1) * $group_size;
echo "<a href=$PHP_SELF?page=1 onmouseOver=\"Firstpage.src='../images/icon/i_page/i_leftEnabled.gif'\" onmouseOut=\"Firstpage.src='../images/icon/i_page/i_leftEnabled-O.gif'\"><img src=\"../images/icon/i_page/i_leftEnabled-O.gif\" border=\" 0\" title=\"First page\" name=\"Firstpage\"></a> \n";
echo "<a href=\"".$_SERVER['PHP_SELF'] ."?";
echo "page=$last_page_of_last_group\" onmouseOver=\"Previouspage.src='../images/icon/i_page/i_arrowLeft.gif'\" onmouseOut=\"Previouspage.src='../images/icon/i_page/i_arrowLeft-O.gif'\"><img src=\"../images/icon/i_page/i_arrowLeft-O.gif\" border=\" 0\" title=\" Previous page\" name=\"Previouspage\"></a>&nbsp;";
}

$first_page_of_current_group = (($current_group - 1) * $group_size) + 1;
$last_page_of_current_group = $current_group * $group_size;

if($last_page_of_current_group <= $num_pages){
$end = $last_page_of_current_group;
}
else{
$end = $num_pages;
}
for($i = $first_page_of_current_group; $i <= $end; $i++){
// หมายเลขของหน้าปัจจุบันไม่ต้องทำลิงค์
if($i == $current_page){
echo " <span style=\"font-family:Tahoma;color:#0319c0;font-size:15px;font-weight:bold;\" >". $i ."</span> &nbsp;";
}
else{
echo "<a href=\"".$_SERVER['PHP_SELF'] . "?";
echo "page=$i\" class=\"newsPage\">". $i ."</a>&nbsp;";
}
}

if($num_pages > $last_page_of_current_group){

// กลุ่มหมายเลขเพจและลิงค์ Next
$first_page_of_next_group = $last_page_of_current_group + 1;
echo "<a href=\"".$_SERVER['PHP_SELF']. "?";
echo "page=$first_page_of_next_group\" onmouseOver=\"Nextpage.src='../images/icon/i_page/i_arrowRight.gif'\" onmouseOut=\"Nextpage.src='../images/icon/i_page/i_arrowRight-O.gif'\"><img src=\"../images/icon/i_page/i_arrowRight-O.gif\" border=\" 0\" title=\"Next page\" name=\"Nextpage\"></a>&nbsp;";
echo "<a href=$PHP_SELF?page=".$num_pages." onmouseOver=\"Lastpage.src='../images/icon/i_page/i_rightEnabled.gif'\" onmouseOut=\"Lastpage.src='../images/icon/i_page/i_rightEnabled-O.gif'\"><img src=\"../images/icon/i_page/i_rightEnabled-O.gif\" border=\" 0\" title=\"Last page\" name=\"Lastpage\"></a> \n";
}
?></td>
</tr>
</table>
</td>
</tr>

</table>
<?PHP
mysql_close($conn);
?>
</form>
</body>
</html>

----------------------------------------------------------------------



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2009-03-29 19:42:57 By : pukmtec View : 1140 Reply : 2
 

 

No. 1



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



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


คำนวน หน้าผิดหรือเปล่าครับ

$Page_Start = (($Per_Page*$Page)-$Per_Page);

ต้องแบบนี้หรือเปล่า เพราะ มันเรียกจาก เรคคอร์ดที่ 15 ไปถึง เรคคอร์ดที่ 15 ไม่น่าจะได้นะ..

ลองเปลี่ยนเป็นแบบนี้ดูครับว่าได้มะ
Code (PHP)
<?php
$current_page=1;
}
$page_size=15; // กำหนดจะให้แสดงกี่บรรทัดต่อหน้า
$start_row = (($page_size*$current_page)-$page_size)


$strSQL = "SELECT * FROM tb_cmpdurable_brand
INNER JOIN tb_cmpdurable_type ON tb_cmpdurable_brand.type_id = tb_cmpdurable_type.type_id
ORDER BY $strSort ASC 
LIMIT $start_row, $page_size";

?>


ลองดูนะครับ






Date : 2009-03-29 21:24:51 By : noomna19
 


 

No. 2



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



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


ไม่ได้นะครับ หน้าหายเลย ไม่แสดงผลอะไรออกมาเลยครับ ขอรบกวนด้วยนะครับ
Date : 2009-03-29 23:18:24 By : pukmtec
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
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 00
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่