-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathleft_bar.php
More file actions
72 lines (67 loc) · 2.34 KB
/
left_bar.php
File metadata and controls
72 lines (67 loc) · 2.34 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!-- Left Dark Bar Start -->
<div id="leftside">
<!-- Start User Echo -->
<div id="welcome"> Logged in as: <br />
<?php
$sql="SELECT `name` FROM `users` WHERE username='$_SESSION[myusername]'";
$result=mysql_query($sql);
echo mysql_result($result, 0, 'name');
?>
</div>
<!-- End User Echo -->
<div class="user">
<a href="../index.php"><img src="img/logo.png<?php echo "?" . time(); ?>" width="120" height="120" class="hoverimg" alt="Brewery Logo" /></a>
</div>
<!-- Start Navagation -->
<ul id="nav">
<li>
<ul class="navigation">
<li class="heading selected">Welcome</li>
</ul>
<li>
<li>
<a class="expanded heading">Basic Setup</a>
<ul class="navigation">
<li><a href="beer_list.php">My Beers</a></li>
<li><a href="keg_list.php">My Kegs</a></li>
<li><a href="tap_list.php">My Taps</a></li>
</ul>
</li>
<li>
<a class="expanded heading">Personalization</a>
<ul class="navigation">
<li><a href="personalize.php#columns">Show/Hide Columns</a></li>
<li><a href="personalize.php#header">Headers</a></li>
<li><a href="personalize.php#logo">Brewery Logo</a></li>
<li><a href="personalize.php#background">Background Image</a></li>
<li><a href="themes.php">Theme Options</a></li>
</ul>
</li>
<li>
<a class="expanded heading">Help!</a>
<ul class="navigation">
<li><a href="http://raspberrypints.com/report-bug/" target="_blank">Report a Bug</a></li>
<li><a href="http://raspberrypints.com/suggestion/" target="_blank">Suggest a Feature</a></li>
</ul>
</li>
<li>
<a class="expanded heading">External Links</a>
<ul class="navigation">
<li><a href="http://www.raspberrypints.com/" target="_blank">Official Website</a></li>
<li><a href="http://www.raspberrypints.com/faq" target="_blank">F.A.Q.</a></li>
<li><a href="http://www.homebrewtalk.com/f51/initial-release-raspberrypints-digital-taplist-solution-456809" target="_blank">Visit Us on HBT</a></li>
<li><a href="http://www.raspberrypints.com/contributors" target="_blank">Contributors</a></li>
<li><a href="http://www.raspberrypints.com/licensing" target="_blank">Licensing</a></li>
</ul>
</li>
</ul>
<div>
<?php
$sql="SELECT `configValue` FROM `config` WHERE configName='version'";
$result=mysql_query($sql);
echo " " , mysql_result($result, 0, 'configValue');
?>
</div>
<!-- End Navagation -->
<!-- Left Dark Bar End -->