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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T15:34:33+00:00 2026-05-24T15:34:33+00:00

I am probably making this more complicated than it need be and hope you

  • 0

I am probably making this more complicated than it need be and hope you guys can help clear my head.

In my database, I have a table with an enum field where most of the values contain have spaces in them. At the moment, I am trying to use a combination select, so that whenever someone select something in select one(which contains all the values of the enums, grabbed from the database by php), the select two dropdown will populate values related to what was selected in select one.

This is the script I am using to grab the select one values to populate select two:

$(function() {
$("#semester").change(function() {
    $("#course").load("tester.php?semester=" + $("#semester").val());
});
});

The script i use to grab the enums:

 $optionresult = mysql_result(mysql_query('SELECT column_type FROM information_schema.columns 
 WHERE table_name = "item" AND column_name = "'.$columnname.'"'),0);
 $values = explode("','",substr($optionresult,6,-2));
 for($i = 0; $i < count($values); $i++) { 
 echo '<option value="'.$values[$i].'">'.$values[$i].'</option>'; 

Something like Long-term and Spring2012 would get passed and posted, while something like Spring 2012 won’t.

Is there a way around this without having to type up each of the option values by hand, removing the space in the option value, and then adding it back in when I query it?

  • 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-24T15:34:34+00:00Added an answer on May 24, 2026 at 3:34 pm

    Try

    $("#course").load("tester.php?semester=" + 
        encodeURIComponent($("#semester").val()));
    

    encodeURIComponent will take care of encoding the spaces in the querystring. It will change “First Semester” to “First%20Semester”.

    The server will decode this automatically– `$_GET[“semester”] will be “First Semester”;

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Probably a really simple one this - I'm starting out with C# and need
This probably has a simple answer, but I must not have had enough coffee
This probably sounds really stupid but I have noo idea how to implement jquery's
Probably a long question for a simple solution, but here goes... I have a
Probably not much more to elaborate on here - I'm using a NumericStepper control
This question would probably apply equally as well to other languages with C-like multi-line
As many of you probably know, online banks nowadays have a security system whereby
I probably just haven't thought this through, or perhaps I'm simply unaware of an
Although this question is about JFlex, it probably applies to other scanner generators such
I was thinking of making a new, light-weight database population framework. I absolutely hate

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.