How to Get Multiple Parameters in URL of CodeIgniter App

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
  1. localhost/sitename/controller/function/first/second
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.
  1. $first = $this->uri->segment(3);
  2. $second = $this->uri->segment(4);
  3.  
  4. echo 'First Param: '.$first.'<br>';
  5. echo 'Second Param: '.$second;
That ends this tutorial. Happy Coding :)

Add new comment