• We just launched and are currently in beta. Join us as we build and grow the community.

How to Get Multiple Parameters in URL of CodeIgniter App

jorgelepro23

API Wrangler
J Rep
0
0
0
Rep
0
J Vouches
0
0
0
Vouches
0
Posts
172
Likes
169
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 200 XP
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. echo

    'First Param: '

    .

    $first

    .

    '<br>'

    ;
  4. echo

    'Second Param: '

    .

    $second

    ;

That ends this tutorial. Happy Coding :)

 

452,496

333,651

333,659

Top