HI!
I'm trying to build a more intelligent menu. The data is tooken from the my MySQL database. It leaves the varible.
$menus="downloads,maps,guides";
Is there a way of creating a table for each section and add the links inside it. The code also once realising that there is
downloads,maps & guides must get
"downloads_links" (a row from the same table) out of the MySQL database and get the links from the row and add it to that table!
eg.
downloads_links="Drivers=http://drivers.com,Cool Stuff!=http://www.keepitcool.com"
It must do this for each catogory (downloads,maps,guides)
the table code is
<div align="justify">
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" bordercolordark="#000000" bordercolorlight="#000000">
<tr>
<td background="bar.gif">[TABLE TITTLE]</td>
</tr>
<tr>
<td bordercolor="#FF0000" bordercolorlight="#FF0000" bordercolordark="#FF0000" bgcolor="#000000">[LINKS]</td>
</tr>
</table>
</div>
This is very complicated to me and i do not have the knowledge to code this. Can any of U HELP?