Hi I\'m trying to store my current url in a session variable.
My app uses query strings like www.domain.com/add?url=http://www.google.com
but current_url() r
I don't think CodeIgniter has any helpers for this. Just use PHP's native support for this:
Echo the full URL:
echo base_url().ltrim($_SERVER['REQUEST_URI'], '/');
Only the query strings:
echo $_SERVER['QUERY_STRING'];