How to delete cookie on codeigniter How to delete cookie on codeigniter codeigniter codeigniter

How to delete cookie on codeigniter


Using Codeigniter, put it inside the save method of your controller:

Try:

delete_cookie('name', $domain, $path); 

Details on official documentation


You can delete cookie from CodeIgniter. Use cookie helper like

$this->load->helper('cookie');delete_cookie("name");


You can't delete a cookie. The browser (or the user) has the delete the cookie(s). But, you can make the browser auto-remove the cookie by setting the expiration of the cookie to a date in the past. Here's a JavaScript example.

function deleteCookie(cookieName, cookieValue) {document.cookie = cookieName+"="+escape(cookieValue) + ";expires=Thu, 01 Jan 1970 00:00:01 GMT;";}