Okie i have sum navigation set up like this
<form action="file.php" method="POST">
<select name="category">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</form>
so when you select 1, 2 , or 3, that value will be what category is.....
but I want to change it to sumthin more simple, just simple links
like
One
Two
Three
and when you click on them, category would equal 1, 2 or 3....
It would look like a link done with the <a href=""> tags...
I just dont know how to get it to do that :p any ideas?