CodeIgniter Forums
Cookie and other headers not send - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30)
+--- Thread: Cookie and other headers not send (/showthread.php?tid=75017)



Cookie and other headers not send - XTAZ - 12-08-2019

Hello!

Code:
PHP Code:
set_cookie([
    'name'   => 'cookie',
    'value'  => 'value'
]);

return 
redirect()->to('/'); 
Cookies not send. For send cookie I must add before redirect $this->response->send();

In my opinion, cookie should send without it.