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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T04:32:19+00:00 2026-06-06T04:32:19+00:00

I have a form with check boxes. I want it so that when a

  • 0

I have a form with check boxes.

I want it so that when a check box is checked, it includes an array.

<input type="checkbox" name="main" value="main" checked> Main/unsorted<br />
<input type="checkbox" name="art" value="art" checked> Art/literature/music<br />
<input type="checkbox" name="games" value="games" checked> Games/gaming<br />

If main is checked include the array ‘main’, if art is checked include the array ‘art’, etc.

I’ve tried, but I can’t find a function that would work for this scenario.

Edit: I’m cheating a bit and am now doing it like so.

foreach($_GET as $get) {
    $end = array_merge($end, $$get);
}
  • 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-06T04:32:20+00:00Added an answer on June 6, 2026 at 4:32 am

    From your information it sounds like you want to merge an array depending on which checkboxes have been ticked? Am I correct in assuming this?

    Is something like this what you are looking for?

    <?php
    
    $combinationArray = array();
    $mainArray = array('item1','item2','item3');
    $artArray = array('item4','item5','item6');
    $gamesArray = array('item7','item8','item9');
    if(isset($_POST['main']) && $_POST['main']=='main'){
        $combinationArray = array_merge($combinationArray,$mainArray);
    }
    if(isset($_POST['art']) && $_POST['art']=='art'){
        $combinationArray = array_merge($combinationArray,$artArray);
    }
    if(isset($_POST['games']) && $_POST['games']=='games'){
        $combinationArray = array_merge($combinationArray,$gamesArray);
    }
    ?>
    

    HTML:

    <form action="yourpage.php" method="post">
        <input type="checkbox" name="main" value="main" checked> Main/unsorted<br />
        <input type="checkbox" name="art" value="art" checked> Art/literature/music<br />
        <input type="checkbox" name="games" value="games" checked> Games/gaming<br />
    
        <button>
            Submit
        </button>
    </form>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a codeigniter form that contains two checkboxes: <input type=checkbox checked=checked id=box1 name=box1
In my main form (form1) I have checkboxes that when checked should also check
I have this form: <tr> <td><input type=hidden name=ledlamps value=LED lamps>LED lamps:</td> <td><input class=field checkbox
I have a lot of check boxes in my WPF form. I want to
I have a form that has a series of check boxes and some line
I have a HTML form containing checkboxes in the form of .. <input type=checkbox
i currently have a form that has several check boxes, once all the boxes
I have a form of radio check boxes (yes/no), which I want to have
So I have an input form that I want to use to update a
I have a form having a table containing many input boxes that will be

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.