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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:16:26+00:00 2026-05-25T02:16:26+00:00

My signup for looks like that: <input type=radio value=a>a <input type=radio value=b>b <select name=group>

  • 0

My signup for looks like that:

<input type="radio" value="a">a
<input type="radio" value="b">b


<select name="group">
<?php
for ($i=1; $i<=4; $i++)
{
    echo '<option value="'.$i.'">'.$i.'</option>';
    }
?>
</select>

What I wanna do is, if selected a, “group” select menu options will be, in range [1;4], if selected b then [5;9]. How to change php on the fly? is it possible with js?

  • 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-25T02:16:27+00:00Added an answer on May 25, 2026 at 2:16 am

    First of all the radio buttons should be give a common name so that they will work a radio buttons.

    Markup change

    <input type="radio" name="selectGroup" value="a">a
    <input type="radio" name="selectGroup" value="b">b
    

    JS

    $(function(){
    
       $("input[name=selectGroup]").change(function(){
          var $select = $("select[name=group");
          var start = $("input[name=selectGroup]:checked").val() == "a"?1:4;
          var end = start + 4;
          $select.empty();
          for(;start < end;start++){
            $select.append("<option value='"+start+"'>"+start+"</option");
          }
       });
    
    
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a rewriterule in my htaccess file that looks like this: RewriteRule ^Signup$
I have a form (signup.php) that pops up in a nyroModal window when I
I have a route that looks like the following: map.newsletter '/newsletter', :controller => newsletter
My signin procedure looks like that: User fills email and pass fields Ajax sends
I notice that at some websites like http://academia.edu/ , the signup form has some
I have a long signup form and would like to hide a few fields
I am working on a signup form, I am using PHP and on my
This is discussed in this thread but it looks like it hasn't been documented
Using ajax+php in my signup form. There are 2 validations: JS side frontend and
I'm working on an email series signup form that needs to have a checkbox

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.