how can you delete a cookie in php
Answers
Answered by
1
Answer:
Remove a cookie using PHP
Cookie: A Cookie is a small file sent by the server to preserve stateful information for a user. It is stored on the client’s computer and sent to the server every time the user makes a request for the same page.
To create cookies you can set the cookie by using the setcookie() function of the PHP.
Similar questions