Is there a way of retrieving the names of the cookies that are set in PHP?
In my website, I have many cookies that start with "answered" proceeded by a number; like $_COOKIE["answered66"]. The values are integers from 1 to 5.
I could write a for loop to go through every number, but I was wondering if there were any more efficient way of doing this. If I could some how retrieve like a list of names of set cookies as a array, I could go from there.