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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T01:28:21+00:00 2026-05-24T01:28:21+00:00

I using PHP in order to create an HTML form. The form has 3

  • 0

I using PHP in order to create an HTML form.
The form has 3 radio buttons and a submit button.
In the initial state of the form, none of the radio buttons is checked.
I want to make the form not to be submitted if non of the radio buttons is checked.
Is there any way to do that? I attached part of the PHP code.

    for($i=0; $i<$nChoices; $i++) {
$Text='<input type="radio" name="answer" value="' . $IdChoices[$i] . '"';
$Text.=">  ". $Choices[$i] . "</input>";
$choiceoutput.= $Text."<br /><br />";
}

Thanks!

  • 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-24T01:28:22+00:00Added an answer on May 24, 2026 at 1:28 am

    This javascript can be used for simple client-side validation.
    It’s not considered safe to only validate on the client-side
    but if your purpose is to see if the user actually selected an value this will do. Otherwise further validation needs to be taking place in your php script.

    <script type="text/javascript">
    function validate()
    {
      var retval = false;
      for (var i=0; i < document.myForm.r.length; i++)
      {
        if (document.myForm.r[i].checked)
        {
          retval = true;
        }
      }  
    
      return retval;
    }
    </script>

    Simple form for putting it to work.

    <form name="myForm" action="page.php" onsubmit="return validate()" method="post">
    <input type="radio" id="r">
    <input type="radio" id="r">
    <input type="submit" value="ok">
    </form>
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using PHP to implement an HTML form and for validation of the
Using latest php in order to create a function that adds a row to
I'm using PHP in order to redirect some search query. There is some example
I'm trying to split an HTML string by a token in order to create
I am trying to create an md5 value in php using the instruction given.
I have an HTML order form that collects info and then on submission passes
I have three simple html or php file that I'm going to create. What
I am using PHP's ZipArchive class to create a zip file containing photos and
I have HTML form with lots of select and input fields, using it a
I am trying to create a go-moku game using jquery,php, and mysql database. I

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.