|
|
|
ขอตัวอย่างโค้ด PHP "การตั้งกระทู้แบบแยกหมวดหมู่" |
|
|
|
|
|
|
|
ลองออกแบบดาต้าเบสมาดูก่อนครับ จะได้แนะนำถูก เพราะถ้าให้บอกหมด ไม่เวิร์คหรอกครับ
|
|
|
|
|
Date :
2011-06-24 12:23:14 |
By :
ทองมี |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แค่มี รหัส id ของหมวดหมู่ก็ได้แล้วครับ
|
|
|
|
|
Date :
2011-06-24 13:01:57 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ออกแบบดาต้าเบสไว้แล้วค่ะ อยากได้แนวทางมาประยุกต์ใช้
ตอนนี้ทำระบบสมาชิกไปแล้ว
กำลังจะเริ่มทำเว็บบอร์ด เลยอยากได้ตัวอย่างค่ะ
|
|
|
|
|
Date :
2011-06-24 13:02:21 |
By :
nokzaz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องเขียนยังไงคะพี่วิน
พอจะมีตัวอย่างไม๊คะ
|
|
|
|
|
Date :
2011-06-24 13:06:26 |
By :
nokzaz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตารางหมวดหมู่มี
forum_id ,
topic ,
forum_detail ,
forum_date
ค่ะ
|
|
|
|
|
Date :
2011-06-24 13:08:17 |
By :
nokzaz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอนนี้สามารถดึงหมวดหมู่ออกมาได้แล้วค่ะ แต่ไม่อยู่ตามตารางที่ต้องการให้เป็น ไม่ทราบว่าวางโค้ดถูกหรือเปล่า รบกวนช่วยดูให้หน่อยค่ะ
Code (PHP)
<form id="form1" name="form1" method="post" action="">
<table width="707" height="79" border="1" class="style9" cellpadding="0" cellspacing="0" bordercolor="#FFFF66" >
<tr>
<td height="30" colspan="2" class="style31" bgcolor="#FF6600" ><strong> :: </strong>หมวดหมู่<strong> :: </strong></td>
<td width="116" class="style31" bgcolor="#FF6600" "><div align="center">จำนวนกระทู้</div></td>
<td width="40" class="style31" bgcolor="#FF6600" "><div align="center">ลบ</div></td>
</tr>
<tr>
<?
include ("connect.php");
$sqlC = "select * from forum order by forum_id desc";
$queryC = mysql_db_query($db,$sqlC);
while($ObjArray=mysql_fetch_array($queryC))
{
?>
<td width="52" height="46" bgcolor="#FF9900" b><center>
<img src="image/kapook-18144-2447.gif" width="40" height="40" />
</center></td>
<td width="489" bgcolor="#FF9900"> ::: <? echo $ObjArray['topic'] ?> :::</td>
<span class="bla12">( </span><span class="vio12"> <? echo $ObjArray['forum_detail']?> <span class="bla12"> )</span></span>
<td width="116" bgcolor="#FF9900"> </td>
<td width="40" bgcolor="#FF9900"> </td>
</tr>
</table>
</form>
</div>
</div>
<p> </p>
<?
}
?>
มันโชว์แบบนี้อ่ะคะ
ต้องการให้มันอยู่ในรูปแบบนี้
|
|
|
|
|
Date :
2011-06-24 13:44:29 |
By :
nokzaz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<form id="form1" name="form1" method="post" action="">
<table width="707" height="79" border="1" class="style9" cellpadding="0" cellspacing="0" bordercolor="#FFFF66" >
<tr>
<td height="30" colspan="2" class="style31" bgcolor="#FF6600" ><strong> :: </strong>หมวดหมู่<strong> :: </strong></td>
<td width="116" class="style31" bgcolor="#FF6600" "><div align="center">จำนวนกระทู้</div></td>
<td width="40" class="style31" bgcolor="#FF6600" "><div align="center">ลบ</div></td>
</tr>
<?
include ("connect.php");
$sqlC = "select * from forum order by forum_id desc";
$queryC = mysql_db_query($db,$sqlC);
while($ObjArray=mysql_fetch_array($queryC))
{
?>
<tr>
<td width="52" height="46" bgcolor="#FF9900" b><center>
<img src="image/kapook-18144-2447.gif" width="40" height="40" />
</center></td>
<td width="489" bgcolor="#FF9900"> ::: <? echo $ObjArray['topic'] ?> :::</td>
<span class="bla12">( </span><span class="vio12"> <? echo $ObjArray['forum_detail']?> <span class="bla12"> )</span></span>
<td width="116" bgcolor="#FF9900"> </td>
<td width="40" bgcolor="#FF9900"> </td>
</tr>
<?
}
?>
</table>
</form>
</div>
</div>
<p> </p>
ลองดูว่าได้ตามที่ต้องการรึเปล่า
|
|
|
|
|
Date :
2011-06-24 14:27:37 |
By :
ทองมี |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่ะตอนนี้ได้แล้ว
|
|
|
|
|
Date :
2011-06-24 14:43:38 |
By :
nokzaz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|