Web Features Learning Mode
A script residing at http://example.com/phpcert/cookies.php contains the following code:
<?php
setcookie('name1', 'value1', time() + 60*60*24, '/');
setcookie('name1', 'value2');
?>
The web browser is configured to accept all cookies. How many cookies will be set by this script?
|
|
|
|