You can use a select
to choose which category to search through, and then a radio button to choose ascending or descending order.
Dropdown
<select name='search'>
<option>Name</option>
<option>Telephone</option>
<option>Address</option>
</select>
Radio Buttons
<input type='radio' name='order' value='asc' /> Ascending
<input type='radio' name='order' value='desc' /> Descending
Not knowing what server-side technology you're using somewhat limits the question, but basically get the value from the select
, and then order depending on the radio button.