Question about putting cookie information into URL parameter

I wouldn't use cookie ingo in the url. I would set up aphp session and save the cookie info in session variables. But if you want to change domains, I would do a POST request instead of adding the cookie info in the urls.
 
Read cookie with php and store it to a variable.
Then use javascript to load php variable and do what you want ..
 
Back
Top