-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.php
37 lines (29 loc) · 822 Bytes
/
menu.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<div class="menu_container sticky clearfix">
<nav>
<ul class="sf-menu">
<li class="selected">
<a href="<?=BASE_URL?>" title="Trang chủ">
Trang chủ
</a>
</li>
<?php $kq = $t->ListTheLoai($lang); ?>
<?php while ($rowTL = $kq->fetch_assoc() ) {?>
<li class="submenu">
<a href="#" title="<?=$rowTL['TenTL']?>">
<?=$rowTL['TenTL']?>
</a>
<ul>
<?php $kq1=$t->ListLoaiTinTrong1TheLoai($rowTL['idTL'],$lang) ?>
<?php while ($rowLT = $kq1->fetch_assoc() ) {?>
<li>
<a href="<?=BASE_URL?>cat/<?=$rowLT['Ten_KhongDau']?>/" title="<?=$rowLT['Ten']?>">
<?=$rowLT['Ten']?>
</a>
</li>
<?php }?>
</ul>
</li>
<?php }?>
</ul>
</nav>
</div>