Welcome Guest, Not a member yet? Register   Sign In
make what i type in the search bar show up in uri after pagnation page #
#3

[eluser]Andreas Karlsson[/eluser]
There is two ways. Ether you do a post first and redirect from that.

Code:
form_open('controller/do_search');

And in the do_search method you:
Code:
$var = $this->input->post('keyword');
redirect('controller/search/' . $var);

And then you fix the redirect with javascript document.location.
That way it works with javascript off an on.

Or you could investigate some kind of .htaccess method and rewrite ?keyword=blabla to your controller/method.


Messages In This Thread
make what i type in the search bar show up in uri after pagnation page # - by El Forum - 06-14-2011, 01:48 AM



Theme © iAndrew 2016 - Forum software by © MyBB