Yeah thats pretty much what i was thinking when building the menu.
Maybe you can make it into a table.
Ex.
PHP Code:
<?php
//conection
$query = mysql_query("SELECT * FROM table");
while($row = mysql_fetch_array($query))
{
echo"
<table width='100%' border='0' cellpadding='0' cellspacing='0'>
<tr>
<td><a href="\". $row['link1'].""\>Link 1</a></td>
<td><a href="\". $row['link2'].""\>Link 2</a></td>
</tr>
</table>";
}
?>
Or you could just make the links in a seperate php file and include it into your page so that way you dont have to deal with mysql and it makes it easier to change the links.
PHP Code:
<?php
echo"
<table width='100%' border='0' cellpadding='0' cellspacing='0'>
<tr>
<td><a href='www.google.com'>Link 1</a></td>
<td><a href='www.dynamicdrive.com'>Link 2</a></td>
</tr>
</table>";
?>
Bookmarks