|
|
|
เกี่ยวกับการดึงข้อมูลมาแสดงอะครับ ช่วยดูให้ผมทีนะครับ |
|
|
|
|
|
|
|
ต้องเอาโค๊ดหน้านี้มาให้ดูด้วยครับ มาแต่ภาพอย่างเดียวก็ไม่รู้ว่าคุณใส่โค๊ดคำสั้งผิดตรงไหน
|
|
|
|
|
Date :
2013-05-20 09:04:51 |
By :
imagineverend |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code
<?PHP
session_start();
?>
<? include ("template/function_date.php");?>
<? include ("template/header.php");?>
<?
REQUIRE ("connectdb.php");
if($_REQUEST['wb_group_ID'] != "")
{
$id = $_REQUEST['wb_group_ID'];
$strSQL = "SELECT
ss_webboard.wb_ID,
ss_webboard.wb_name,
ss_webboard.wb_userpost,
ss_webboard.wb_reply,
ss_webboard.wb_view,
ss_webboard.wb_group_ID,
ss_webboard.wb_datepost,
ss_wb_group.wb_group_name
FROM
ss_webboard
Inner Join ss_wb_group ON ss_webboard.wb_group_ID = ss_wb_group.wb_group_ID
Where ss_webboard.wb_group_ID = '$id'";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 20; // Per Page
$Page = $_GET["wb_group_ID"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
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;
}
$strSQL .=" order by wb_ID DESC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<style type="text/css">
<!--
.style0 {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #7979FF
}
-->
</style>
<table width="980" border="0" align="center">
<tr>
<td align="left" valign="top">
<table width="900" border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td valign="top" align="center"><img src="images/tab_post.jpg" width="980" height="60" align="center" ></td>
</tr>
<tr>
<td width="980" height="44" align="left" colspan="6"><p><a href="index.php"> www.saksiam.com ></a> <a href="ShowCall.php">Webboard ></a> <?
include("connectdb.php");
if($_REQUEST['wb_group_ID'] != "")
{
$id = $_REQUEST['wb_group_ID'];
$strSQLwb_gp = "SELECT * FROM ss_wb_group Where ss_wb_group.wb_group_ID = '$id'";
$objQuery_wbgp = mysql_query($strSQLwb_gp);
$objResult_wbgp = mysql_fetch_array($objQuery_wbgp);
echo"$objResult_wbgp[wb_group_name]";
}
?></p>
<p><a href="Newpost.php"><img src="images/new_topic_th.png" width="119" height="40" border="0" /></a></p></td>
</tr>
</table>
<table width="980" border="0" cellpadding="0" cellspacing="0" align="center" height="600">
<tr bgcolor="#FFFFFF">
<TD valign="top">
<table width="980" border="1" cellpadding="0" cellspacing="0" align="center" height="" bordercolor="#E8E8E8">
<tr bgcolor="#5353FF">
<td width="50" align="center" height="39"><font color="#FFFFFF" size="2"> รหัส</font></td>
<td width="180" align="center"><font color="#FFFFFF" size="2">หัวข้อ</font></td>
<td width="150" align="center" ><font color="#FFFFFF" size="2">ผู้เขียน</font></td>
<td width="30" align="center"><font color="#FFFFFF" size="2">ตอบ</font></td>
<td width="30" align="center" ><font color="#FFFFFF" size="2">อ่าน</font></td>
<td width="180" ><font color="#FFFFFF" size="2"> ตอบล่าสุด</font></td>
</tr>
<?
while($objResult=mysql_fetch_array($objQuery))
{
?>
<tr bgcolor="<? echo $bg?>" onMouseOver="this.style.backgroundColor ='#D5D5FF'" onMouseOut="this.style.backgroundColor='<?=$bg?>'" >
<td height="25" width="50"><div align="center"> <?=$objResult["wb_ID"];?></div></td>
<td align="left" width="180"> <a href="ReplyWebboard.php?wb_ID=<?=$objResult["wb_ID"];?>"><?=$objResult['wb_name'];?></a>
<?
$strDateAdd = date('Y-m-d',strtotime("-7 day"));
if($objResult[wb_datepost] >= "$strDateAdd")
{
echo"<img src='images/new.gif'/>";
//echo"$strDateAdd---$resutCat[date_file]";
}
else
{
//echo"$strDateAdd---$resutCat[date_file]";
}
?> </td>
<td width="150" align="left"> <?=$objResult["wb_userpost"];?></td>
<td width="30" align="center"><?=$objResult["wb_reply"];?></td>
<td width="30" align="center"><?=$objResult["wb_view"];?></td>
<?
{
echo $strSQL_Reply = "SELECT * FROM ss_reply WHERE ss_reply.wb_ID = ss_reply.wb_ID ORDER BY ss_reply.rp_ID DESC";
$objQuery_Reply = mysql_query($strSQL_Reply);
$objResult_Reply = mysql_fetch_array($objQuery_Reply);
?>
<td width="180" align="left"> โดย : <?=$objResult_Reply['re_userreply'];?></td>
<?}?>
</tr>
<?
}
}
?>
</table>
<br>
<?= $Num_Rows;?> หัวข้อ : <?=$Num_Pages;?> Page :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page'>Next>></a> ";
}
?>
</TD>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
<? include ("template/foot.php");?>
นี้อ่าครับ ^^
|
|
|
|
|
Date :
2013-05-20 09:22:20 |
By :
น้ำจัEฅu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
{
echo $strSQL_Reply = "SELECT * FROM ss_reply WHERE ss_reply.wb_ID = ss_reply.wb_ID ORDER BY ss_reply.rp_ID DESC";
$objQuery_Reply = mysql_query($strSQL_Reply);
$objResult_Reply = mysql_fetch_array($objQuery_Reply);
?>
ลองเอาฐานข้อมูลให้ดูหน่อยครับ คุณเชื่อมตารางกันผิดอยู่นะ มี 2 ตารางใช่มั้ย
|
|
|
|
|
Date :
2013-05-20 09:38:52 |
By :
imagineverend |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ครับใช้ครับมี 2 ตารางครับ มีตารางเว็บบอร์ด กับตารางผู้ตอบกระทู้อะครับ
อันนี้ส่วนของฐานข้อมูลตารางเว็บบอร์ดนะครับ
อันนี้ส่วนของฐานข้อมูลตารางผู้ตอบกระทู้นะครับ และข้อมูลในตารางครับ
|
|
|
|
|
Date :
2013-05-20 10:11:26 |
By :
น้ำจัEฅu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เปลี่ยนจาก
Code (PHP)
SELECT * FROM ss_reply WHERE ss_reply.wb_ID = ss_reply.wb_ID ORDER BY ss_reply.rp_ID DESC
เป็น
Code (PHP)
SELECT ss_reply.*, ss_webboard.* FROM ss_reply, ss_webboard WHERE ss_reply.wb_ID = ss_webboard.wb_ID ORDER BY rp_ID DESC
ลองดูครับได้ไหม
|
|
|
|
|
Date :
2013-05-20 10:31:24 |
By :
imagineverend |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่ได้นะครับ ออกมาเหมือนเดิมอ่าครับ * *
|
|
|
|
|
Date :
2013-05-20 10:35:09 |
By :
น้ำจัEฅu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆครับ ^^ กว่าจะแก้ไข ขอบคุณครับ
|
|
|
|
|
Date :
2013-05-20 11:50:57 |
By :
น้ำจัEฅu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|