How to reset/destroy a cookie in PHP?

Submitted by: Administrator
Reset a cookie by specifying expire time in the past:
Example: setcookie('Test',$i,time()-3600); // already expired time

Reset a cookie by specifying its name only
Example: setcookie('Test');
Submitted by: Administrator

Read Online PHP Job Interview Questions And Answers