hi all
i have this is my htaccess
url i get isCode:RewriteRule ^items-([0-9]+)-([0-9]+)-([^/\.]+)-([^/\.]+)$ items.php?dler_id=$1&ctgry_id=$2&page=$3&choice=$4
When i paste the above url address in the addressbar then the page is displayed absolutely fine.Code:http://localhost/foldername/items-8-1-1-high
but when i choose option from the select box and click submit then i get
this is my select box codeCode:"page not found" error
vineetCode:<? $choice = $_REQUEST['choice']; $urlg = "http://localhost/foldername/items-".$dler_id."-".$ctgry_id."-1-"."$choice"; /* output = http://localhost/foldername/items-8-1-1-high */ ?> <form id="sortform" name="sortform" action="<? echo $urlg ?>" method="post"> <select class="sortselect" name="choice" id="choice"> <option value="high">Price high to low</option> <option value="low">Price low to high</option> </select> <input name="submit" id="submit" type="submit" value="" /> </form>



Reply With Quote



Bookmarks