| Question: | How do you set a cookie up to persist for 1 day from the time you set it? |
| Answer 1: | use the setcookie function, with a third parameter time()+86400 This was the CORRECT answer |
| Answer 2: | use the setcookie function, with a third parameter time()+1440 |
| Answer 3: | use the setcookie function, with the second parameter time()+1440 |
| Answer 4: | use the setcookie function, with the second parameter time()+86400 |
| Answer 5: | use the cookie_update function, with a second parameter time()+86400 |
| Answer 6: | use the cookie_update function, with a second parameter time()+1440 |
| Answer 7: | use the cookie_update function, with the first parameter time()+1440 |
| Answer 8: | use the cookie_update function, with the first parameter time()+86400 |