1.

How To Set Cookies?

Answer»

Answer : setcookie('variable','VALUE','time') ; variable - NAME of the cookie variable value - value of the cookie variable time - expiry time

EXAMPLE:

setcookie('Test',$i,time()+3600);
Test - cookie variable name
$i - value of the variable 'Test'
time()+3600 - denotes that the cookie will expire after an one HOUR.

Example:

setcookie('Test',$i,time()+3600);
Test - cookie variable name
$i - value of the variable 'Test'
time()+3600 - denotes that the cookie will expire after an one hour.



Discussion

No Comment Found