fixed it, for some reason I need --> '', '/', 'mydomain.com' in the setcookie statement.
For all
setcookie('string', string, '', '/', 'mydomain.com')
one last question.
if I have:
setcookie('string1', string1, '', '/', 'mydomain.com')
setcookie('string2', string2, '', '/', 'mydomain.com')
setcookie('string3', string3, '', '/', 'mydomain.com')
does this make three cookies or one cookie?
if it makes three cookies how do I get it all into one cookie.
Thanks