This will point yoou in te right direction. From the listamatic simple list example:
<div id="navcontainer">
<ul id="navlist">
<?php
// put code here to get menu records from data base
while($rs = mysql_fetch_array($result)) {
echo '<li id="active"><a href="<?php echo $rs["menu-url'] . " id="current">' . $rs["menudescription"] . '</a></li>
}
?>
</ul>
</div>
More or less
Larry