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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T12:41:18+00:00 2026-06-17T12:41:18+00:00

I have some checkbox like this <form action=tt.php method=post> <input type=checkbox name=lvl[] value=0>0&nbsp <input

  • 0

I have some checkbox like this

<form action="tt.php" method="post">
<input type="checkbox" name="lvl[]" value="0">0&nbsp
<input type="checkbox" name="lvl[]" value="1">1&nbsp
<input type="checkbox" name="lvl[]" value="2">2&nbsp
<input type="checkbox" name="lvl[]" value="3">3&nbsp
<input type="checkbox" name="lvl[]" value="4">4&nbsp
<input type="submit" value="Ok">

How to add values from checked ones to SQL query like this?:

If checked 2 and 4 then
select name,lvl,team from $table where lvl=2 or lvl=4
If checked 2 and 4 AND 0 then
select name,lvl,team from $table where lvl=2 or lvl=4 or team='abc' (if 0 checked then ‘select’ must contains strings where team=’abc’, if not – don’t)
If none is selected then
select name,lvl,team from $table

  • 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-17T12:41:18+00:00Added an answer on June 17, 2026 at 12:41 pm
    $where = '';
    
    if (isset($_POST['lvl']) && $vals = $_POST['lvl']) {
    
       // Begin WHERE string
       $where = 'WHERE '; 
    
       // Remove '0' from array
       if ($key = array_search('0', $vals)) {
          $where .= 'team = "abc" ';
          unset($vals[$key]);
       } 
    
       // Append `WHERE lvl IN (2,4)`
       $where .= 'AND lvl IN (' . implode(',', $vals) . ')';
    
       // Final statement
    
    }
    
    $sql = "select name,lvl,team from $table $where";
    

    Edit

    What happens if you replace this:

    if ($key = array_search('0', $vals)) {
       $where .= 'team = "abc" ';
       unset($vals[$key]);
    } 
    

    With:

    if ($vals[0] === '0') {
       $where .= 'team = "abc" ';
       unset($vals[0]);
    } 
    

    Change your code to this:

    $first = false;
    if ($vals[0] === '0') {
        $where .= 'team = "neutral"';
        unset($vals[0]);
        $first = true;
    }
    if (count($vals)) {
        if ($first) $where .= ' OR ';
        $where .= 'lvl IN (' . implode(',', $vals) . ')';
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For example I have a form like this: <form method='post' action='someaction.php' name='myform'> <input type='text'
I have some checkboxes, something like this: <form name=submit-form name=submit-form> <label>property1</label> <input type=checkbox name=property1><br>
I have a form like this <form action=formprocess1.php> <input type=text name=firstname> <input type=text name=email>
I have code like so: <form enctype=multipart/form-data method=POST action=blabla.php class=addToCart> <input type=button onclick=addToCartMulti(); value=Add
I have a text area form like this one: <input id=sg_0 name=sjalfgefid type=text class=letur
I have a web page like this: <form id=some-form> <input type='text'> <button type=submit> </form>
I have a simple form which is like this: The HTML: <form action=post> <input
Hi I have the below example form <form id=search method=GET action=/results> <input type=text name=name>
I have inserted this form with multiple checkbox items which collects some values, What
I have some form with radio and checkboxes. It should to be like this:

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.