what is missing from this code which is supposed to create a test cookies
linkedin assesment quizzes php
Q11. What is missing from this code, which is supposed to create a test cookies?
$string_name = "testcookie";
$string_value = "This is a test cookie";
$expiry_info = info()+259200;
$string_domain = "localhost.localdomain";
- The
$_REQUEST
is missing. - The
$_COOKIES
array is missing. - The cookie session is missing.
- The call to
setcookie()
is missing.