natasha_thomas Posted February 26, 2011 Share Posted February 26, 2011 Folks, I have a dropdown, once values are selcted, these values should be put in a URL structure so that it matches with the one MoD_rewrite rule in my .htaccess. Here is my Mod_Rewrite Rule: RewriteRule ^(.*)/([^/]*)\.html$ search.php?q=$1&sc=$2 [QSA,L] Here is my Dropdown Code: <div id="search" > <form id="searchform" method="get" action="search.php"> <label>Search By Brand/ Manufacturer: </label> <select name="q"> <option value="SelectBrand">Select Brand</option> <?php if(isset($this->search->options)): ?> <?php foreach($mfg as $lolachild): ?> <option value="<?php echo $lolachild; ?>"><?php echo ucwords($lolachild); ?></option> <?php endforeach; ?> <?php endif; ?> </select> <select name="sc"> <option value="All"><?php eprint(LangAll); ?></option> <?php if(isset($this->search->options)): ?> <?php foreach($this->search->options as $cat): ?> <option value="<?php echo $cat->value; ?>"><?php echo $cat->name; ?></option> <?php endforeach; ?> <?php endif; ?> </select> <input type="submit" value="<?php eprint(LangSearch); ?>" /> </form> </div> Problem is, upon Submit, it goes to this link structure: http://mydomain.co.uk/search.php?q=fisher&sc=302 It should rather be: http://au2.co.uk/fisher/302.html What am i missing or doing wrong? Cheer Natasha Link to comment https://forums.phpfreaks.com/topic/228885-dropdown-passing-selected-values-in-a-formate-so-it-matches-url_redirect-patter/ Share on other sites More sharing options...
bford21 Posted February 26, 2011 Share Posted February 26, 2011 I could be completely wrong here but in your form you use method="get". If I read your post correctly you'd want to use method="post". Then again I could be wrong. Link to comment https://forums.phpfreaks.com/topic/228885-dropdown-passing-selected-values-in-a-formate-so-it-matches-url_redirect-patter/#findComment-1179887 Share on other sites More sharing options...
natasha_thomas Posted March 1, 2011 Author Share Posted March 1, 2011 Anyone here to help me with this? Link to comment https://forums.phpfreaks.com/topic/228885-dropdown-passing-selected-values-in-a-formate-so-it-matches-url_redirect-patter/#findComment-1181127 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.