How to Get Multiple Parameters in URL of CodeIgniter App
Submitted by nurhodelta_17 on Friday, March 9, 2018 - 09:54.
In the example URL that I'm going to provide below, I've removed index.php using .htaccess file. If you have no idea on how to do this, you may refer to my tutorial.
How to remove index.php in the URL of CodeIgniter App
For example you have a URL like below
sitename: the name of your app
controller: the controller
function: the function of that controller
first: the first paramater that you are sending
second: the second parameter that you are sending
Then you can access the parameters in your controller using $this->uri->segment() same as what I did below.
That ends this tutorial. Happy Coding :)
- localhost/sitename/controller/function/first/second
- $first = $this->uri->segment(3);
- $second = $this->uri->segment(4);
- echo 'First Param: '.$first.'<br>';
- echo 'Second Param: '.$second;
Add new comment
- 526 views