Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <?php $cookie_name = "user"; $cookie_value = "John"; setrawcookie($cookie_name, $cookie_value, time() + (86400 * 30), "/"); // 86400 = 1 jour ?> <html> <body> <?php echo "Le cookie est défini."; ?> </body> </html>
Cookie est défini.