Hello
hopefully i can explain this
i have a simple classifieds program its made in php with html templates.
when you create an ad your given a choice of category via a drop down menu
you chose the category the press submit
(id like to keep this),
but when someone comes to view the ads they also have the same drop down menu and a submit button
( id like to change that),
it seems easier if all the catagories where all viewed at once (like links) then you just click strait on the category your interested in and go just like a hyperlink
however as it is now when you chose a category and press submit
it stays on the same page but displays a list of whatever category you chose
so i dont know where to send the links
i am able to make the categorys display like links using a href "address"
is the another way of making a link without an address but by clicking you your doing the same as submitting?
here is the piece of code im trying to mod.
CODE
<form id="form1" name="form1" method="post" action="">
<select name="category" id="category">
<LOOP genderOptionDropdown>
<option value="{gender.option}">{gender.option}</option>
</LOOP genderOptionDropdown>
</select>
<input type="submit" name="Submit" value="Submit" />
<label></label>
</form>
Thank you very much
any info will be appreciated
Connor