I'm not sure why this is not working. I have allow_get_array = TRUE in the config file. Here's what I am trying to do..
This is the link that the user will click from their email
http://www.site.com/confirm?code=f8c53b1578f7c05471d087f18b343af0c3a638
confirm.php Controller:
$code = $this->input->get('code');
also tried
$code = $this->input->get('code', TRUE);
Any ideas?