I have a category drop down and I want to add a view all that will either display ALL categories or simple redirect to a url which ever is possible
<form method="post" dynamic_parameters="category|limit" action="{path="members/results"} ">
<h4>Search by Region: </h4>
<p> <select name="category"><br />
{exp:channel:categories channel="members" style="linear" show_empty="no"}<br />
<option value='{category_id}'>{category_name}</option><br />
{/exp:channel:categories}<br />
<option value='???'>View All</option><br />
</select><br />
<input type="submit" value="Go!" /><br />
<br />
<br />
</form>