|
|
|
ถามเรื่อง เมนู หน่อยครับ ผมออกแบบ DB เพื่อทำ menu แบบนี้ TABLE : category cat_id cat_parent_id |
|
|
|
|
|
|
|
<?
$sql = "select cat_id, cat_parent_id, cat_name from category ";
$result = mysql_query($sql);
while($rs = mysql_fetch_array($result))
{
echo "<div><b><a href='$_Server?std=$rs[cat_parent_id]'>$rs[cat_name]</a></b>"."<br></div>";
$sql2 = "select sub_id, cat_parent_id, sub_name from sub_category where cat_parent_id='$rs[cat_parent_id]' ";
$result2 = mysql_query($sql2);
while($rs2 = mysql_fetch_array($result2))
{
if($rs[cat_parent_id]==$std && $std!=""){
echo " » ".$rs2[sub_name]."<br>";
}
}
}
?>
|
|
|
|
|
Date :
9 ธ.ค. 2551 17:57:05 |
By :
jewels |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โอ๊วววว... ขอบคุณมากครับ ท่าน jewels
|
|
|
|
|
Date :
9 ธ.ค. 2551 18:15:36 |
By :
อสูรแดง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|