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

  • Home
  • SEARCH
  • 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 6198405
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T03:59:31+00:00 2026-05-24T03:59:31+00:00

i have some html snip like this <input type=checkbox name=color value=red/>red <input type=checkbox name=color

  • 0

i have some html snip like this

<input type="checkbox" name="color" value="red"/>red
<input type="checkbox" name="color" value="green"/>green
<input type="checkbox" name="color" value="purple"/>purple
<input type="checkbox" name="color" value="grey"/>grey

and i want to use jquery to post value to server, so i used jquery like this

$.post('/test', {'color': ['red', 'green']});

i did search this question in stackoverflow, but people say it’s should be ‘color[]’ instead of ‘color’, but whenever i used ‘color’ or ‘color[]’ firebug displayed the post data is ‘color%5B%5D=red&color%5B%5D=green’, and my server can’t work right, but when using

<input type="submit" value="submit"/>

to post firebug says the data is ‘color=red&color=green’, and my server work right.
How could it be? my jquery version is 1.4.4

  • 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-24T03:59:32+00:00Added an answer on May 24, 2026 at 3:59 am

    For some reason, the jQuery developers decided that PHP’s bizarre handling of multiple controls with the same name is The Correct Way. As a consequence, when submitting an array of data, jQuery will append [] to the name (%5B%5D is just a URL encoded representation of []).

    to post firebug says the data is ‘color=red&color=green’, and my server work right

    That suggests that you are using something other than PHP to process the data so PHP’s magic handling of [] in names does not apply.

    You can either look for color[] on the server…

    e.g.

    @values = $query->param('color[]');
    

    … or you can set traditional mode to stop jQuery PHPifying your data.

    $.post('/test', {'color': ['red', 'green']}, { traditional: true });
    

    Then normal access should work:

    @values = $query->param('color');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some HTML code like this: <input id=fieldname-1 name=field_name[value][1] value=1 type=checkbox /> <input
I have some HTML that looks like this: <div> <div class=value> <a href=# class=clicker>Some
I have some html element like these: <table id=myTable></table> <select name=mySelect> <option value=1>1</option> <option
I have some HTML that looks like this: <ul class=faq> <li class=open> <a class=question
I have some html code like this. <a href=http://www.google.com.pk id=goog title=<table width='20%' border='1'> <tr>
I have some HTML which looks like this: <body> <div id=panel1 class=panel> Panel 1
We have some html that looks like this: <form id=MyUserControl runat=server method=post> <script language=javascript
I have some HTML setup like this: <div> <label for=amount><a id=amount-help-icon class=help icon-link href=#><span
I have some HTML like this <div id=topContainer> <div id=level1 style=display:none;> </div> <div id=level2
I have some html that looks like this: <div class=block> <div id=item1></div> <div id=item2></div>

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.