aboutsummaryrefslogtreecommitdiff
path: root/navigation.php
diff options
context:
space:
mode:
Diffstat (limited to 'navigation.php')
-rw-r--r--navigation.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/navigation.php b/navigation.php
deleted file mode 100644
index 5765712..0000000
--- a/navigation.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?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>&nbsp;&nbsp;<a href="index.php">HOME</a>&nbsp;&nbsp;</td>
-<?php
-
- $result = $db->Query("SELECT * FROM `bayonet_navigation` ORDER BY `weight`");
- $nav = $db->Fetch($result);
-
- foreach ($nav as $link) {
- echo '<td>&nbsp;&nbsp;<a href="' . str_replace('&', '&amp;', $link['link']) . '">' . strtoupper($link['title']) . '</a>&nbsp;&nbsp;</td>';
- }
- ?>
- </tr>
-</table>