Click to See Complete Forum and Search --> : Cookies!


Greelmo
07-05-2003, 11:23 AM
so... how sercure are cookies... can i relyl on them to store money in an online casino i'm making... also, how do i alter and update cookies?

jeffmott
07-05-2003, 11:30 AM
Cookies would not be good for what you speak of. For example, you're looking for them to store money (winnings?) from a casino? What if they moved to a different computer or cleared their internet cache? The answer is their winnings would suddenly disappear. What you want will have to be done with a database at the server.

In any case, you can find information for cookies with JavaScript in these places.
http://devedge.netscape.com/library/manuals/2000/javascript/1.3/reference/document.html#1193577
http://devedge.netscape.com/library/manuals/2000/javascript/1.3/reference/cookies.html#1002170
http://devedge.netscape.com/library/manuals/2000/javascript/1.3/reference/cookies.html#1002170

Greelmo
07-05-2003, 12:36 PM
well, i'm on a mac and am yet to find a way to set up databases... cuz i use asp.net as my server side language.... which i REALLY hate...

Jonathan
07-05-2003, 06:13 PM
where would you find how to make a regular cookie... would you use this to call for it?

document.write(cookie_name);

Jeff Mott
07-06-2003, 10:26 AM
where would you find how to make a regular cookieYou can find all the information you need regarding cookies with the links I posted above.