Setting a Cookie
Let's learn how to set a cookie.
We'll cover the following...
Remembering the user’s name
To make the name available during the following requests, we should set a cookie.
This way we can tell the browser to remember the user’s name and send it back to the server when the user makes the next request.
Let’s see this in action first.
Add the following lines to the beginning of name.php
:
Press + to interact
<?phpif (isset($_POST['name'])) {setcookie('name', $_POST['name']);}?><!DOCTYPE html><html lang="en"><head>
If $_POST['name']
is defined, we know that the user submitted the form.
The name they submitted is in this ...
Access this course and 1400+ top-rated courses and projects.