Skip to content
Advertisement

Delete elements of a JSON encoded in a $_COOKIE

Good morning! In the code below, I did a programming logic to delete an element in a JSON, but it is encoded within a $_COOKIE.

JavaScript
JavaScript

QUESTION: What is the most correct way to solve this problem? In the last line of PHP, the setcookie() function does not update the array with the index deleted for the $_COOKIE variable in the page store. Are there other solutions to work with this type of information?

Advertisement

Answer

Last line should simply be:

JavaScript

EDIT: But this line

JavaScript

does not make much sense, it should not be there at all. print_r should be used to display values in a human-readable form and – without a second argument explicitly set to true – its return value does not make much sense.

EDIT #2: Complete cleaned up solution

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement