Hello everyone.
I'm trying to change the url after submiting a form with the following code:
<form name="searchSpikes" action="?a=findspikes2" method="post">
<select name="brand">
<option value="Nike">Nike</option>
<option value="Adidas">Adidas</option>
</select>
<input type="textbox" name="maxprice" style="width:30px;">‎₪
<select name="size">
<option value="35.0" selected="selected">35.0</option>
<option value="35.5">35.5</option>
</select>
<select name="size">
<option value="48.5">48.5</option>
<option value="49.0" selected="selected">49.0</option>
</select>
<input type="button" name="find" >
</form>
The url before I submit the form is: xxxxxx.com/folder/?a=findspikes and when I submit the form the url stays the same.
Why it's not changed to ?a=findspikes2 ??