Posts: 3,985
Name: Abel Mohler
Location: Asheville, North Carolina USA
|
The only way I can think to keep it totally invisible, or at least almost invisible, is to pass the data to the server, save it in the database with a session ID of some sort (a single unique cookie), then retrieve it via an AJAX call.
The only other thing that could be done is put all of the data into cookies, which isn't really invisible since these may be read by any user who knows how. However, if you're ok with this, you could put an array into one cookie (assuming there's not tons of data), by separating each item with a comma or some other delimiter, then using the split method to make it back into an array on the other page.
|