Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3937124
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T00:01:57+00:00 2026-05-20T00:01:57+00:00

I’ve got a form. In this form, a user can fill out a few

  • 0

I’ve got a form. In this form, a user can fill out a few fields, then click “Add”. The data gets turned into an HTML element, and then the form gets (partially) cleared so that he can type some more data.

I’m trying to figure out how to store that data when he clicks “Add” so that it can be submitted later. Should I serialize (JSON? or is there a more compact representation–doesn’t need to be human readable) it and store it in a hidden field? If so, what happens when he adds a 2nd object? I deserialize the old data, and then reserialize the 2 objects together? Seems inefficient.

Do I somehow clone the form, hide it, and update all the name attributes so they don’t conflict, and then kill myself trying to parse these stupid things into an array later?

What’s the best approach?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T00:01:58+00:00Added an answer on May 20, 2026 at 12:01 am

    Create a hidden field with an incremental numerical suffix somewhere in the name.

    var fields = $('input[type=hidden][name^=foo_]', form).length;
    $('<input type="hidden" name="foo_' + (fields + 1) + '">').val(val).appendTo(form);
    

    Submit it the usual way, jQuery.serialize() and so on.

    Finally intercept on it accordingly in the server side (semi-pseudo).

    for (var i = 0; i < Integer.MAX_VALUE; i++) {
        var value = request.getParameter("foo_" + i);
        if (value == null) break;
        // ...
    }
    

    Note that multiple hidden fields with the same name is also allowed, but you’re dependent on the server side technology used whether they will be gathered in the same order from the request as they appeared in the query string (the HTTP/HTML spec already mandates that they must appear in the same order in the HTTP query string as their respective HTML input elements appeared in the DOM tree). As far as I know, PHP and Servlet do this correctly (i.e. the values appear in the same order in the array of parameter values as they appeared in the HTTP query string).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.