Home

Published

- 1 min read

get current url in codeigniter

img of get current url in codeigniter

The solution for this is noted below

get current url in codeigniter

Solution

   simple get like this

echo $this->input->get('my_id');
Load the URL helper To get current url

$currentURL = current_url(); //http://myhost/main

$params   = $_SERVER['QUERY_STRING']; //my_id=1,3

$fullURL = $currentURL . '?' . $params;

echo $fullURL;   //http://myhost/main?my_id=1,3

Try other methods by searching on the site. That is if this doesn’t work