ต้องการแบ่งหน้าที่แสดงข่าวสาร แต่พอดึงขึ้นมาโชว์ query เหมือน query จะชนกันต้องแก้ตรงไหนอ่ะครับ
- ต้องการแบ่งหน้าที่แสดงข่าวสาร สัก4ข่าวก็ให้ขึ้นหน้าใหม่ แต่พอดึงขึ้นมาโชว์ query เหมือน query จะชนกัน
- ตรง $sql .= " WHERE 1 ORDER BY id_news DESC LIMIT $Page_start , $Per_Page";
- ถ้าคอมเม้นไว้ใช้ได้แต่ไม่แบ่งหน้าให้
- ถ้าไม่คอมเม้นก็ error ประมาณนี้อ่ะครับ
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\WEB_SGM2\news_1.php on line 51
จำนวน 1หน้า 2 (5 ข่าว)
1 Next >>
*** อันนี้โค้ดทั้งหน้าอ่ะครับ
Code (PHP)
<table width="810" border="0" cellpadding="0" cellspacing="3">
<?php
include("connect/connect.php");
include("connect/function.php");
//============ เอากระทู้ข่าวมาแสดง
$sql="Select * From tb_news Inner Join tb_image on tb_news.id_news=tb_image.id_news where tb_news.type_news=1 Group by tb_news.id_news desc ";
/* ตั้งค่า แสดงผลต่อหน้า $Per_Page */
$Per_Page =4;
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 .= " WHERE 1 ORDER BY id_news DESC LIMIT $Page_start , $Per_Page";
//ส่วนแสดงผล
$intRow=0;
$query = mysql_query($sql);
While($result= mysql_fetch_array($query)){
$detail2=$result['detail'];
$detail_shot=mb_substr($detail2,0,400,"UTF-8")."....อ่านต่อ";
//$detail_shot=mb_strimwidth($detail2,0,400,"...อ่านต่อ","UTF-8");
$detail3=strip_tags($detail_shot);
$intRow++;
if($intRow%2==1)
{
$bg="bgcolor=#DFEFFF";
}
else
{
$bg="bgcolor=#E9E9E9";
}
//check วันที่ เพิ่ม Script
$date_check=date("Y-m-d"); //หาเดือนปัจจุบันแสดงสถานะ new 60 วันหลังจากที่เพิ่ม
$date_add = $result[date_add];
if (date('Y-m-d H:i:s' , strtotime("$date_add , +60 days"))>date('Y-m-d H:i:s') ){
$img_new="<img src=\"new.gif\" width=\"32\" height=\"13\">";
}else{
$img_new="";
}
?>
<tr>
<td class="lista" valign="top" width="22" <?=$bg;?>>
<div align="center"><a target="_blank" href="news_show.php?id_news=<?=$result["id_news"];?>&id_news=<?=$result["id_news"];?>"><img src="images/new_large/<?=$result["name_img"];?>" width="130" height="85" border="0"/></a></div></td>
<td valign="top" class="detail4" <?=$bg;?>>
<a target="_blank" href="news_show.php?id_news=<?=$result["id_news"];?>"class="detail4">
<span class="subject"> <?= ($result["date_add"]);?> </span><span class="detail4"><?php echo"$detail3";?></span> </a> <? echo"$img_new";?> <span class="detail"> [view <?= ($result["count_q"]);?>]</span> </td>
</tr>
<?
}
?>
</table> <!--count กระทู้-->
<table width="165" cellpadding="1" cellspacing="1">
<tr>
<td width="159" colspan="10" class="detail">จำนวน
<?=$Page;?>
หน้า <b> <?=$Num_Pages;?></b>
(<?= $Num_Rows;?> ข่าว) </td>
</tr>
</table>
<table width="810" border="0" cellpadding="1" cellspacing="1">
<tr>
<td>
<?php /* สร้างปุ่มย้อนกลับ */
if($Prev_Page)
echo " <a href='$PHP_SELF?Page=$Prev_Page' class='detail'><< Back </a> ";
for($i=1; $i<$Num_Pages; $i++){
if($i != $Page)
echo " l <a href='$PHP_SELF?Page=$i' class='detail'>$i</a> l";
else
echo "<b> $i </b>";
}
/*สร้างปุ่มเดินหน้า */
if($Page!=$Num_Pages)
echo " <a href ='$PHP_SELF?Page=$Next_Page' class='detail'> Next >> </a>";
?>
</td>
</tr>
</table>
Tag : PHP, MySQL, HTML/CSS, JavaScript, jQuery
Date :
2011-07-18 15:07:14
By :
shinjangs
View :
983
Reply :
8
บรรทัดที่ 006
Code (PHP)
$sql="Select * From tb_news Inner Join tb_image on tb_news.id_news=tb_image.id_news";
บรรทัดที่031
Code (PHP)
$sql .= "where tb_news.type_news=1 Group by tb_news.id_news desc LIMIT $Page_start , $Per_Page";
Date :
2011-07-18 15:34:10
By :
mangkunzo
ยังติด error อยู่ครับคุณ mangkunzo
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\WEB_SGM2\news_1.php on line 31
จำนวน 1หน้า 15 (59 ข่าว)
1 l 2 l l 3 l l 4 l l 5 l l 6 l l 7 l l 8 l l 9 l l 10 l l 11 l l 12 l l 13 l l 14 l Next >>
ประวัติการแก้ไข 2011-07-18 16:07:45
Date :
2011-07-18 16:05:11
By :
shinjangs
บรรทัดที่ 006
Code (PHP)
$sql="Select * From tb_news Inner Join tb_image on tb_news.id_news=tb_image.id_news where tb_news.type_news=1 Group by tb_news.id_news ";
บรรทัดที่031
Code (PHP)
$sql .= " ORDER BY id_news desc LIMIT $Page_start , $Per_Page ";
ลองดูแบบนี้ครับ
Date :
2011-07-18 16:18:51
By :
webmaster
ยังติดตรงนี้นิดนึงครับ คุณ mr.win (กำลัง งมครับ)
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\WEB_SGM2\news_1.php on line 35
จำนวน 1หน้า 2 (5 ข่าว)
1 Next >>
Date :
2011-07-18 16:45:38
By :
shinjangs
ตรงบรรทัด 06
Code (PHP)
$sql="Select * From tb_news Inner Join tb_image on tb_news.id_news=tb_image.id_news where tb_news.type_news=1 Group by tb_news.id_news"
พอครับ
แล้ว บรรทัดที่ 31
Code (PHP)
$sql.="ORDER BY tb_news.id_news DESC LIMIT $Page_start , $Per_Page"
ลองดูครับ
ประวัติการแก้ไข 2011-07-18 18:03:22
Date :
2011-07-18 17:42:57
By :
slurpee55555
คุณเบส ผมลองล่ะครับยังติดเหมือนเดิมครับ รบกวนช่วยทีนะครับ
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\WEB_SGM2\news_1.php on line 35
จำนวน 1หน้า 2 (5 ข่าว)
Date :
2011-07-19 00:11:07
By :
shinjangs
34-35 ลองแก้เป็น
Code (PHP)
$query = mysql_query($sql) or die(mysql_error() . "<br/>" . $sql);
While($result= mysql_fetch_array($query)){
จะได้เห็น error
Date :
2011-07-19 07:31:27
By :
PlaKriM
ได้แล้วครับทุกท่าน ขอบคุณทุกท่านมากมายครับ ใช้ของคุณ mr.win ครับ แก้นิสเดียวครับ
ตรงบรรทัด 06
Code (PHP)
$sql="Select * From tb_news Inner Join tb_image on tb_news.id_news=tb_image.id_news where tb_news.type_news=1 Group by tb_news.id_news ";
ตรงบรรทัด 31
Code (PHP)
$sql .= " ORDER BY tb_news.id_news DESC LIMIT $Page_start , $Per_Page ";
ประวัติการแก้ไข 2011-07-19 09:10:09 2011-07-19 09:11:07 2011-07-19 09:12:53
Date :
2011-07-19 09:09:14
By :
shinjangs
Load balance : Server 01