-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleft_column.php
43 lines (31 loc) · 1.52 KB
/
left_column.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
38
39
40
41
42
43
<div id="templatemo_left_column">
<div id="templatemo_header">
<div id="site_title">
<h1><a href="http://www.templatemo.com" target="_parent">Clean <strong>Blog</strong><span>Free HTML-CSS Template</span></a></h1>
</div><!-- end of site_title -->
</div> <!-- end of header -->
<div id="templatemo_sidebar">
<div id="templatemo_rss">
<a href="#">SUBSCRIBE NOW <br /><span>to our rss feed</span></a>
</div>
<h4>Categories</h4>
<?
$categories = mysql_query("SELECT * FROM categories");
?>
<ul class="templatemo_list">
<?while($row = mysql_fetch_assoc($categories)){?>
<li><a href="index.php?id=<?=$row['id']?>" target="_parent" ><?=$row['name']?></a></li>
<?}?>
</ul>
<div class="cleaner_h40"></div>
<h4>Friends</h4>
<?
$friends = mysql_query("SELECT * FROM friends");
?>
<ul class="templatemo_list">
<?while($row = mysql_fetch_assoc($friends)){?>
<li><a href="#" target="_parent"><?=$row['name']?></a></li>
<?}?>
</ul>
</div> <!-- end of templatemo_sidebar -->
</div> <!-- end of templatemo_left_column -->