จะเขียนโค้ดยังไง ให้ดึงข้อมูลจากดาต้าเบสมาแสดงคะ ?
<?
// ผมเดาเอาน่ะ ว่าตาราง forum คุณเก็บ หมวดหมู่ (topic) แบบหลายๆ topic
// เห็นคุณอยากออกมาแบบด้านบน แต่ทำไมคุณ รับค่าออกมาหลายตัวจังครับ งง ???
$sqlC="select * from forum group by topic order by forum_id desc"; // เอาเฉพาะ topic ออกมาก่อน
$queryC=mysql_db_query($db,$sqlC);
while($ObjArray = mysql_fetch_array($queryC))
{
$forum_id = $row[forum_id];
$topic = $row[topic];
$forum_detail = $row[forum_detail];
$date_forum = $row[date_forum];
$Sql=mysql_query("select * from forum where topic='$topic'"); // อันนี้ผมเดาเอาน่ะครับ ว่าใน forum คุณมีหลาย topic
$TopicRows = mysql_num_rows($Sql); // นับจำนวน topic
?>
<tr><td width="115" height="46" bgcolor="#FF9900"><center>
<img src="image/kapook-18144-2447.gif" width="40" height="40" />
</center></td><td width="426" bgcolor="#FF9900">
<?echo $topic; // แสดงชื่อหมวดหมู่?>
</td>
<td>
<?echo $TopicRows; //แสดงจำนวนหมวดหมู่?>
</td>
<td>
<a href="#">ลบ</a>
</td>
</tr>
<?
}
mysql_close();
?>
</table>
ประวัติการแก้ไข 2011-06-24 00:49:32
Date :
2011-06-24 00:49:15
By :
mangkunzo
รันโค้ดยังไม่ผ่านค่ะ มันขึ้นว่า
Parse error: syntax error, unexpected $end in C:\AppServ\www\pleng\webboard_admin.php on line 151
151 คือบรรทัดสุดท้ายเลย
Code (PHP)
<? session_start();
if($_SESSION['user_id'] == "")
{
echo "<script> alert (' please LOGIN !!') ;</script>";
echo"<meta http-equiv=\"refresh\" content=\"0;url='login.php'\">";
exit();
}
if($_SESSION['status'] != "0")
{
echo "<script> alert ('This page for admin only') ;</script>";
echo"<meta http-equiv=\"refresh\" content=\"0;url='login.php'\">";
exit();
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<div id="Layer3">
<form id="form1" name="form1" method="post" action="">
<span class="style17">
<?
include ("connect.php");
$SQL = "SELECT * FROM member WHERE user_id = '".$_SESSION['user_id']."' ";
$Query = mysql_query($SQL);
$Result = mysql_fetch_array($Query);
?>
</span>
<div align="center" class="style18">ยินดีต้อนรับ <?=$Result["username"];?> เข้าสู่ระบบค่ะ</div>
</form>
</div>
<div id="Layer4">
<div id="Layer5">
<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>
<?
$sqlC="select * from forum group by topic order by forum_id desc";
$queryC=mysql_db_query($db,$sqlC);
while($ObjArray=mysql_fetch_array($queryC))
{
$forum_id = $row[forum_id];
$topic = $row[topic];
$forum_detail = $row[forum_detail];
$date_forum = $row[date_forum];
$Sql=mysql_query("select * from forum where topic='$topic'");
$TopicRows = mysql_num_rows($Sql);
?>
<td width="115" height="46" bgcolor="#FF9900" b><center>
<img src="image/kapook-18144-2447.gif" width="40" height="40" />
</center></td>
<td width="426" bgcolor="#FF9900"><? echo "$topic" ?> <? echo "$forum_detail" ?></td>
<td width="116" bgcolor="#FF9900"> </td>
<td width="40" bgcolor="#FF9900"> </td>
</tr>
</table>
</div>
</div>
<?
include ("HD_ADMIN.php");
?>
</center>
</html>
ประวัติการแก้ไข 2011-06-24 10:35:05 2011-06-24 10:41:02
Date :
2011-06-24 10:34:04
By :
nokzaz
ตอนนี้รันผ่านแล้วค่ะ แต่ว่า ก็ยังไม่แสดงหมวดหมู่ตามที่ต้องการ
ทำยังไงดีคะ
Date :
2011-06-24 10:39:03
By :
nokzaz
รบกวนผู้รู้ด้วยนะคะ แก้มานานแล้ว TT
Date :
2011-06-24 11:02:48
By :
nokzaz
ถ้าจะแสดงตามรูปที่แนบมา ผมว่า ผมทำถูกแล้วน่ะครับ
หรือว่าอยากได้ เอ้าพุทแบบไหนครับ เอาตัวอย่างคร่าวๆมาดูทีครับ
Date :
2011-06-28 11:26:18
By :
mangkunzo
<?
02.
03.//
04.
05.//
06.
07.$sqlC="select * from forum group by topic order by forum_id desc"; // เอาเฉพาะ topic ออกมาก่อน
08.$queryC=mysql_select_db($db);
09.
10.while($ObjArray = mysql_fetch_array($queryC))
11.{
12.$forum_id = $ObjArray[forum_id];
13.$topic = $ObjArray[topic];
14.$forum_detail = $ObjArray[forum_detail];
15.$date_forum = $ObjArray[date_forum];
16.
17.$Sql=mysql_query("select * from forum where topic='$topic'"); // อันนี้ผมเดาเอาน่ะครับ ว่าใน forum คุณมีหลาย topic
18.$TopicRows = mysql_num_rows($Sql); // นับจำนวน topic
19.?>
20.<tr><td width="115" height="46" bgcolor="#FF9900"><center>
21.<img src="image/kapook-18144-2447.gif" width="40" height="40" />
22.</center></td><td width="426" bgcolor="#FF9900">
23.<?echo $topic; // แสดงชื่อหมวดหมู่?>
24.</td>
25.<td>
26.<?echo $TopicRows; //แสดงจำนวนหมวดหมู่?>
27.</td>
28.<td>
29.<a href="#">ลบ</a>
30.</td>
31.</tr>
32.<?
33.}
34.mysql_close();
35.?>
36.</table>
Date :
2011-11-05 11:00:02
By :
คนผ่านมา
ลองปรับจากความเห็นที่ 2 ตามความน่าจะเป็นไปได้ครับ ไม่รู้ได้ป่าว
<? session_start();
if($_SESSION['user_id'] == "")
{
echo "<script> alert (' please LOGIN !!') ;</script>";
echo"<meta http-equiv=\"refresh\" content=\"0;url='login.php'\">";
exit();
}
if($_SESSION['status'] != "0")
{
echo "<script> alert ('This page for admin only') ;</script>";
echo"<meta http-equiv=\"refresh\" content=\"0;url='login.php'\">";
exit();
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<div id="Layer3">
<form id="form1" name="form1" method="post" action="">
<span class="style17">
<?
include ("connect.php");
$SQL = "SELECT * FROM member WHERE user_id = '".$_SESSION['user_id']."' ";
$Query = mysql_query($SQL);
$Result = mysql_fetch_array($Query);
?>
</span>
<div align="center" class="style18">ยินดีต้อนรับ <?=$Result["username"];?> เข้าสู่ระบบค่ะ</div>
</form>
</div>
<div id="Layer4">
<div id="Layer5">
<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>
<?
$sqlC="select * from forum group by topic order by forum_id desc";
$queryC=mysql_db_query($db,$sqlC);
while($ObjArray = mysql_fetch_array($queryC))
{
$forum_id = $ObjArray[forum_id];
$topic = $ObjArray[topic];
$forum_detail = $ObjArray[forum_detail];
$date_forum = $ObjArray[date_forum];
$Sql=mysql_query("select * from forum where topic='$topic'");
$TopicRows = mysql_num_rows($Sql);
?>
<tr>
<td width="115" height="46" bgcolor="#FF9900" b><center><img src="image/kapook-18144-2447.gif" width="40" height="40" /></center></td>
<td width="426" bgcolor="#FF9900"><? echo "$topic" ?> <? echo "$forum_detail" ?></td>
<td width="116" bgcolor="#FF9900"> </td>
<td width="40" bgcolor="#FF9900"> </td>
</tr>
<?
}
?>
</table>
</div>
</div>
<?
include ("HD_ADMIN.php");
?>
</center>
</html>
Date :
2011-11-05 11:24:09
By :
tongkamlekdee
Load balance : Server 05