Creating a dropdown is rather easy. It has a basic html structure, as such:
HTML Code:
<ul id="id1">
<li class="class1"><a href="#">1</a></li>
<li class="class2"><a href="#">2</a>
<ul id="id2">
<li><a href="#">2.1</a></li>
</ul>
</li>
</ul>
Etcetera... you'll also need to use CSS to give it a nice touch, and perhaps some jQuery or Javascript for a nice effect.
There are enough results if here, in-case you don't know what markup needs to be done.
__________________
$gocore = new gakoyucore();
$con = mysql_connect($gocore->server, $gocore->username, $gocore->password) or die(mysql_error());
|