blob: ecf12367a69838c6b1bf393fdb51361fae9e1a4d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
/**
* Bayonet Conent Management System
* Copyright (C) Joseph Hunkeler & Evan O'Connell
*
* Purpose of this software is to allow users to manage their website
* with ease and without needing to have any coding knowledge in order
* to maintain it. Visit www.eodesign.com/cms for any updates or feedback.
*/
?>
<table border="0" cellspacing="0" class="navLinks">
<tr>
<td> <a href="index.php">HOME</a> </td>
<?php
$result = $db->Query("SELECT * FROM `bayonet_navigation` ORDER BY `weight`");
while(($row = $db->Fetch($result))!==false)
{
echo '<td> <a href="'.$row['link'].'">'.strtoUpper($row['title']).'</a> </td>';
}
?>
</tr>
</table>
|