สมุติว่าคลิกที่เมนู cpu แล้วให้มันวนลูปออกมาดังตัวอย่างตามรูป..มันจะเขียนยังไงครับผม
อันนี้เป็นโค้ดเมนูด้านซ้ายครับครับ
<?php // v2 with drop down menu read from Mysql
$tb_type = $_REQUEST['tb_type'];
include "include/connect.php";
$sql = "SELECT * from tb_type Order by id_type asc";
$result=mysql_db_query($dbname,$sql);
while($fetcharr=mysql_fetch_array($result)) {
$id_type=$fetcharr['id_type'];
$name_type=$fetcharr['name_type'];
echo "<img src=images/bullet1.gif> <a class=style5 href=prd_list2.php?tb_type=$id_type>$name_type</a><br>" ;
if ($tb_type==$id_type) {
$sql2 = "SELECT * from tb_subtype Where ref_id_type='$tb_type' Order by id_subtype asc";
$result2=mysql_db_query($dbname,$sql2);
while( $fetcharr2=mysql_fetch_array($result2) ) {
$id_subtype =$fetcharr2['id_subtype'];
$ref_id_type =$fetcharr2['ref_id_type'];
$name_subtype=$fetcharr2['name_subtype'];
echo " <img src=images/bullet2.gif>
<a class=style4 href=prd_list1.php?tb_type=$id_type&id_subtype=$id_subtype>$name_subtype</a><br>\n" ;
}
}
}
?>