Tags
Asked 2 years ago
13 Jul 2021
Views 127
Quincy

Quincy posted

What is role of Setcookie in PHP ?

What is role of Setcookie in PHP ?
kord

kord
answered Jul 24 '21 00:00

role of the setcookie is to sending a cookie.


basic syntax ::

setcookie(string $name , string $value = "" , int $expires = 0 );


usage ::

setcookie('cookie_name','cookievalue' ,time()+60 ); //set cookie value and expire it in 60 seconds.








Post Answer