Thursday, October 8th, 2009

Multiple Dimensional Arrays in Cookies

Some people using my scripts are nice enough to provide feedback and suggestions on further uses for the script which they are happy to share with other readers.
Multiple Dimensional Arrays in Cookies

Thursday, July 30th, 2009

First Time Only

You can use some JavaScript ans a cookie to have something happen the first time someone visits a page but not on subsequent visits.
First Time Only

Wednesday, February 25th, 2009

Cookie Limits

While it is possible to store some data in cookies to pass from one web page to another there is a limit to how much data that cookies can hold. That’s why using sessions where the cookie only needs to hold the session id is the better option. In this article we look at just [...]

Thursday, September 18th, 2008

Using the Cookie Toolbox

The cookie toolbox that I created goes well beyond just being able to read, write, and delete cookies. It contains code making it easy to save entire arrays into a single cookie and to be able to easily update the array that you have stored in the cookie. This tutorial describes many of the additional [...]

Wednesday, September 17th, 2008

Passing Parameters using Cookies

Handling cookies from JavaScript is much easier once you have written functions that take care of reading, writing, and deleting cookies. To provide maximum flexibility in being able to use cookies I wrote a set of these functions that allows entire arrays of data to be stored within a single cookie if you need to [...]

Friday, July 4th, 2008

A Cookie ToolBox

Cookies are the main way of retaining information between one web page and the next and the only way to retain information between different browser sessions. Cookies are supported by both JavaScript and server side processing. Cookies are however limited in the amount of data they can store. Each domain can store up to 20 [...]