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 8625147
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T07:42:37+00:00 2026-06-12T07:42:37+00:00

I have a big form that is spliced in 4 divs, each div represent

  • 0

I have a big form that is spliced in 4 divs, each div represent a step , everything is enclose in just 1 form, my problem is the form is becoming too big, because has the ability to add new fields , (pictures, text, languages) dynamically ,

so i was wondering if is there any option to submit this form in parts , my server has the limit of 20 fields per post, and i can not change this setting

  • 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-06-12T07:42:38+00:00Added an answer on June 12, 2026 at 7:42 am

    If the server limit bothers you you can Serialize the form in jSON and pass this as a single Parameter

    $.fn.serializeObject = function()
    {
        var o = {};
        var a = this.serializeArray();
        $.each(a, function() {
            if (o[this.name] !== undefined) {
                if (!o[this.name].push) {
                    o[this.name] = [o[this.name]];
                }
                o[this.name].push(this.value || '');
            } else {
                o[this.name] = this.value || '';
            }
        });
        return o;
    };
    

    like

    var data = $("form#myform").serializeObject();
    window.location = "url?data="+encodeURIComponent(data);
    

    than on server

    $data = json_decode($_GET["data"]);
    foreach($data as $row)
    {
     //Do What ever you want with $row
    }
    

    Or if you need to use $_POST

    var post_data = { data : data};
    $.post('url', post_data ,function(data) {
      console.log(data);
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a website that just takes a really big form and saves the
I have a big form that is split over 3 pages (each page is
I have a web app that has a big and complex form (fields, checks,
I've created a form with code and I have a big problem. Every element
I have a big form, that will be serialized by a jQuery function. The
I have a site that has a big form page and about half of
I have a big registration form that I've devided with jquery cycle so you
I have a big form so for that am using sliding form http://tympanus.net/Tutorials/FancySlidingForm/ but
i have a big problem with umlauts. I have a normal registration Form. And
I have a big form that sends an email with its contents to the

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.