Destramic Posted January 31, 2011 Share Posted January 31, 2011 hey guys basically i have a form which searches my news <form action="" method="GET"> <label for="search">Search: </label><input name="search" id="search" type="text" /> <input value="Search" type="submit" /> </form> and im not sure the best way around this or if im going around this the right way but when i access http://localhost/news/seach (search form) and press submit after entering a query i want the action to be http://localhost/news/seach/search query value here i hope ive explained well enough and someone could help me with this...thank you Link to comment https://forums.phpfreaks.com/topic/226262-forms-url-friendly-using-_get_post/ Share on other sites More sharing options...
requinix Posted January 31, 2011 Share Posted January 31, 2011 1. Have the search page look at the REQUEST_URI. If it's like "...search.php?search=foo" then redirect to "search/foo". 2. Use URL rewriting to turn a non-existent "search/foo" into "search.php?search=foo". Link to comment https://forums.phpfreaks.com/topic/226262-forms-url-friendly-using-_get_post/#findComment-1168011 Share on other sites More sharing options...
Destramic Posted January 31, 2011 Author Share Posted January 31, 2011 ok somehing like this to reroute the url? $routing = array('/news\search\/?search=\/(.*?)/' => 'news/search/\1'); Link to comment https://forums.phpfreaks.com/topic/226262-forms-url-friendly-using-_get_post/#findComment-1168026 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.