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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T14:51:35+00:00 2026-06-11T14:51:35+00:00

I am trying to populate a selected menu when the page is created but

  • 0

I am trying to populate a selected menu when the page is created but there are no options that show.

$(document).ready(function() {
$.ajax('patientlist.php', function(data){
    var html = '';
    var len = data.length;
    for (var i = 0; i< len; i++) {
        html += '<option value="' + data[i].patient_id + '">' + data[i].patient_firstname + data[i].patient_lastname + '</option>';}
    $('#patientselect').append(html);
});

});

my patientlist.php

$result = mysql_query("SELECT `patient_id`, `patient_firstname`, `patient_lastname` FROM `patients` WHERE `company_id` = " . $user_data['company_id'] . " ORDER BY `patient_firstname`");

while($row = mysql_fetch_assoc($result)) {

$data[] = $row;

echo json_encode( $data );

}
My result from the php page

[{“patient_id”:”9″,”patient_firstname”:”Adam”,”patient_lastname”:”Steve”}] etc…

Really appreciate any help, been stuck on this for a week!

  • 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-06-11T14:51:36+00:00Added an answer on June 11, 2026 at 2:51 pm

    So, posting again.

    First of all, you should put the echo json_encode( $data ); out of your while loop

    while($row = mysql_fetch_assoc($result)) {
      $data[] = $row;
    }
    echo json_encode( $data );
    

    Second, your $ajax syntax isn’t correct, change this to $.post and tell the $.post request you are expecting a 'json' response from patientlist.php

    $(document).ready(function() {
      $.post('patientlist.php', {}, function(data){
        /* code */
      }, 'json'); // <= set data type json here
    });
    

    When retrieving a valid json string, you can iterate over data by using the $.each method

    $.each(data, function(index, patient) {
      console.log(patient.patient_id); // or use patient['patient_id']
    });
    

    At least you will now receive a valid request.

    Noticing your HTML, do not use .append if it is not a DOM element, you are just building html elements as a string, so use instead

    $('#patientselect').html(html);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I trying to populate the dropdown list when page was loaded.But it is not
I am trying to populate a TextView based on the current selected options in
im trying to populate my listview beneath my tab function but for some reason
I am trying to get the selected option from a dropdown and populate another
I am trying populate H3 with the sum of column E for rows that
I am trying to populate a ListView ....but I cant add 2 string values
I am trying to populate a spinner, but am getting an error. Here is
I am trying to get the date selected on page load, which is 4
I am trying to populate the dropdown value with the selected value. I referred
I am trying to populate a WebGrid cell with an image that will open

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.