is there a way to save different values on session array using javascript? Here's the scenario: A user inputs a string on text box and submits it, the string will now be saved into a session array. So every time the user submits a value it will be stacked to that session array and if that array reached its maximum limit number of values be saved, all values from that session will be saved to the database and the session array values will now be emptied.
Its like a JAR and you're filling it with CANDIES... the JAR is the session array and CANDIES are values... I want to do this using javascript: Answers are very much appreciated... Thanks!