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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T23:17:56+00:00 2026-05-23T23:17:56+00:00

I would like to ask, is there a better way to run this code.

  • 0

I would like to ask, is there a better way to run this code. I have a form with a select of #BA_customer which when selected populates a second menu with the address of the selected client. I also need to display a dept dropdown based on the customer selecetion. I think the code I have is causing a conflict where the customer is being passed twice in 2 seperate statements. What is the correct way to do this? Many thanks

    <script language="javascript" type="text/javascript">
          $(function() {
                $("#BA_customer").live('change', function() { if ($(this).val()!="")
                $.get("../../getOptions.php?BA_customer=" + $(this).val(), function(data) {
                $("#BA_address").html(data); });
            }); 
          });
    </script>
    <script language="javascript" type="text/javascript">
          $(function() {
                $("#BA_customer").live('change', function() { if ($(this).val()!="")
                $.get("../../getDept.php?BA_customer=" + $(this).val(), function(data) {
                $("#BA_dept").html(data); });
            }); 
          });
    </script>

+++++++ dept.php Code +++++++++++++++++++++

$customer = mysql_real_escape_string( $_GET["BA_customer"] ); // not used here, it's the customer choosen

    $con = mysql_connect("localhost","root","");
    $db = "sample";
      if (!$con)
        {
        die('Could not connect: ' . mysql_error());
        }

        mysql_select_db($db, $con);
        $query_rs_select_dept = sprintf("SELECT * FROM departments where code = '$customer'");
        $rs_select_dept = mysql_query($query_rs_select_dept, $con) or die(mysql_error());
        $row_rs_select_dept = mysql_fetch_assoc($rs_select_dept);
        $totalRows_rs_select_dept = mysql_num_rows($rs_select_dept);



          echo '<label for="dept">Select a Department</label>'.'<select name="customerdept">';
          echo '<option value="">Select a Department</option>';
          while ($row_rs_select_dept = mysql_fetch_assoc($rs_select_dept))
          {
          $dept=$row_rs_select_dept['name'];
          echo '<option value="dept">'.$dept.'</option>';
          }
          echo '</select>';

++++ SOLUTION +++++++++++++

mysql_select_db($db, $con);
$query_rs_dept = sprintf("SELECT * FROM departments where code = '$customer'");
$rs_dept = mysql_query($query_rs_dept, $con) or die(mysql_error());
$totalRows_rs_dept = mysql_num_rows($rs_dept);

echo '<label for="dept">Select a Department</label>'.'<select name="customerdept">';
echo '<option value="">Select a Department</option>';
while ($row_rs_dept = mysql_fetch_assoc($rs_dept))
{
       $dept=$row_rs_dept['name'];
       echo '<option value="dept">'.$dept.'</option>';
}
echo '</select>';

Remove the first $row_rs_select_dept = mysql_fetch_assoc($rs_select_dept); from the script and it works. Just posted solution in case some other soul needs help with problem like this.

  • 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-23T23:17:57+00:00Added an answer on May 23, 2026 at 11:17 pm

    Maybe you could send the two requests together?

    $(function() {
        $("#BA_customer").live('change', function() { 
            if($(this).val()!="")
                $.get("../../getOptions.php?BA_customer=" + $(this).val(), function(data) {
                    $("#BA_address").html(data); 
                });
                $.get("../../getDept.php?BA_customer=" + $(this).val(), function(data) {
                    $("#BA_dept").html(data); 
                });
            }); 
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to ask you which automated build environment you consider better, based
I would like to ask for a reccomended solution for this: We have a
I have already posted something similar here but I would like to ask the
I would like to ask for some simple examples showing the uses of <div>
I would like to ask how licensing works on multiple instances? Suppose that I
Just like Carl's question over here I would like to ask you (because I
Would like to get a list of advantages and disadvantages of using Stored Procedures.
Would like to create a strong password in C++. Any suggestions? I assume it
I would like to test a string containing a path to a file for
I would like to sort an array in ascending order using C/C++ . The

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.