+ 1
cookies in php You know?
Givime the exampel cookies in php with showing output
1 Antwort
- 1
?? cookie is just information about your uses on a website to save it on your computer, and used for exemple to save you login, password of a site like site site when you checked "remember me" for login automatically
and the output is simply :
var_dump($_COOKIE);
print like:
array(
'user' => 'toto',
'password' => 'tutu')