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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T03:50:02+00:00 2026-05-28T03:50:02+00:00

I have this form with multiple checkboxes with same name and all of checkboxes

  • 0

I have this form with multiple checkboxes with same name and all of checkboxes are read from a database:

echo "<FORM action='check.php' method=POST>"; ?>
<div style='color:#414141; font-size:15px;'>
<?php
while($rows=mysql_fetch_array($result)){
?>
<input name="check[]" type="checkbox" id="checkk[]" value="<? echo $rows['ID']; ?>"><? echo $rows['checkboxname']; ?>
<BR>
<?php
}
echo "</div>";
echo "<input name='' type='submit' id='get' value='Next'>";
echo "</FORM>";

I need a form validation to the next file.When I click on Submit Button(Next),show me the next page only if I checked a checkbox.I preffer a javascript validation method.

  • 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-28T03:50:02+00:00Added an answer on May 28, 2026 at 3:50 am

    You can add a click event listener for the submit button and check if atleast one checkbox is checked and submit if true.

    Something like below should work,

    Try below,

    echo "<input name='' type='submit' id='get' value='Next' onclick='return validateCheckbox()'>";
    
    
    <script>
         function validateCheckbox () {
            var checkboxes = document.getElementsByName('check[]'); //selected by name since OP wanted to select by name
    
             for (var i = 0; i < checkboxes.length; i++) {
                 if (checkboxes[i].checked) {
                   return true; // found 1 checked checkbox
                 }
             }
    
             return false; //none checked, so cancel submit
         }
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this form: <form name=customize> Only show results within <select name=distance id=slct_distance> <option>25</option>
I got a form containing multiple checkboxes. This form shall be sent to the
I have the following line in my add/edit Course views: echo $this->Form->input( 'Competency', array(
I have 1 form in with multiple checkboxes in it (each with the code):
I'm trying to form a query string from multiple checkboxes that will be used
I have a form that has multiple categories. They are separated by checkboxes, so
I have a table with multiple rows which contain form inputs (checkboxes, text, dropdowns).
I have this form in my view: <!-- Bug (extra 'i') right here-----------v -->
I have this form. Basically what I want is to send a auto-response with
I have this form submit code: Event.observe(window, 'load', init, false); function init() { Event.observe('addressForm',

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.