PDA

View Full Version : Cookies???


JackFruit3D
10-09-2002, 04:56 AM
ok
well thanx for your help and now it all works...
but now i want to do something wrong...

i have all these nice keys in my cookie and it works sweet on my web site...

but now i want to use the contents of that cookie on a different server/web site...

only way i could think of doing this is to extract all the keys into a form, post the form to the next server/web site and then take all the posted fields and re enter them into another cookie.

this prolly is the wrong way to go about such a task.
i don't think a session would hold it either...

any suggestions???
maybe i should concider an application????

glenngv
10-09-2002, 06:23 AM
hey that's the (only) way to go!

JackFruit3D
10-09-2002, 08:38 PM
posting to a form is the only way to go...
ok thanx for your help glenngv

BigDaddy
10-09-2002, 10:47 PM
cookies cannot be used across domains, from what I understand.

JackFruit3D
10-10-2002, 12:27 AM
:(
i'm guessing sessions and applications can't either???

whammy
10-10-2002, 12:43 AM
That's right.

glenngv
10-10-2002, 01:44 AM
Originally posted by BigDaddy
cookies cannot be used across domains, from what I understand.

but what JackFruit3D said was:

"but now i want to use the contents of that cookie on a different server/web site...

only way i could think of doing this is to extract all the keys into a form, post the form to the next server/web site and then take all the posted fields and re enter them into another cookie. "

whammy
10-10-2002, 01:45 AM
Yup, which should work great. JackFruit's original assumption was just fine, IMHO (and what a refreshing thing that is!).

Alternatively you could use a database (assuming both domains have network access to the same database) to store the information in. :)