I'm the author of the menu but, I have no experience with including information from a MySQL database in anything. Do you know that much? If so this could probably get it working for you - The menu's content is fairly straightforward (from menuItems.js linked to the demo page):
Code:
menuItems:[ // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
["Menu"], //create header
["Dynamic Drive", "http://www.dynamicdrive.com", ""],
["What's New", "http://www.dynamicdrive.com/new.htm",""],
["What's Hot", "http://www.dynamicdrive.com/hot.htm", ""],
["Message Forum", "http://www.dynamicdrive.com/forums", ""],
["Submit Script", "http://www.dynamicdrive.com/submitscript.htm", ""],
["Link to Us", "http://www.dynamicdrive.com/link.htm", ""],
All you would need to do should be to change the extension to php or whatever is required on your server, like menuItems.php (be sure to chnage the extension in the call for the script too*) - then you could insert your tokens for the database inside the quotes above, in place of the hard coded text and URL's.
*
Code:
<script src="menuItems.php" type="text/javascript">
Bookmarks