I have a search form on each of my pages. If I use form helper, it defaults to $_POST. I\'d like the search term to show up in the URI:
$_POST
http://examp
There's a better fix if you're dealing with people without JS enabled.
View:
Controller
input->post('keyword')); } function search() { // do stuff; } ?>
I have used this a lot of times before.