SetCookieRaw(); vs SetCookie(); in PHP?

superaff1984

Senior Member
Premium Member
Joined
Jun 16, 2010
Messages
992
Reaction score
131
Which one would you all suggest to use for clickids? Because I setcookie(); is cuasing our clickID not to report back all the time due to how long the click ID is. I may be wrong?

when I refer to clickID I am referring to the click identification number that gets reported back to ad networks for tracking.
 
You could try using sessionStorage or localStorage for storing the clickID instead of cookies to avoid length limitations and persistence issues.
 
Back
Top