well if i get u right then ur in the wrong file.....
go to admin/index.php,
find;
Code:
<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="2" id="navtable">
<?php maketableheader("Options"); ?>
</table>
<a href="options.php?s=<?php echo $session[sessionhash]; ?>&action=options"> Change options </a>
</td></tr>
now above that u can add ur own link like this:
Code:
<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="2" id="navtable">
<?php maketableheader("phpmyadmin"); ?>
</table>
<a href="www.urdomain.com/phpmyadmin">use phpmyadmin </a>
</td></tr>
now if u want to make more links do it like this again and if u want to add more options within a certain group then just add this line and change it to ur needs:<a href="www.urdomain.com/phpmyadmin">use phpmyadmin </a>
but remember to add this "|"after each line so it looks like this;
Code:
<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="2" id="navtable">
<?php maketableheader("phpmyadmin"); ?>
</table>
<a href="www.urdomain.com/phpmyadmin">usephpmyadmin</a> |
<a href="www.urdomain.com/phpmyadmin/tutorials">phpmyadmin tutorials</a>
</td></tr>