jorgelepro23
API Wrangler
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
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 :)
How to remove index.php in the URL of CodeIgniter App
For example you have a URL like below
- 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.
- $first
=
$this
->
uri
->
segment
(
3
)
;
- $second
=
$this
->
uri
->
segment
(
4
)
;
- echo
'First Param: '
.
$first
.
'<br>'
;
- echo
'Second Param: '
.
$second
;
That ends this tutorial. Happy Coding :)