Codeigniter cookies not setting? Codeigniter cookies not setting? codeigniter codeigniter

Codeigniter cookies not setting?


You shouldn't need to load the cookie helper if you aren't going to use the short hand function alias.

Check your cookie setting in the config.php file. Especially:

$config['cookie_path'] = "/";

If that doesn't work, just use the PHP's native function to set cookies and you probably can still use CI's input() to retrieve them.

setcookie("name", $value);