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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T11:15:40+00:00 2026-05-12T11:15:40+00:00

I am working with php and want to have a page that has a

  • 0

I am working with php and want to have a page that has a drop down on top. elements in the drop down have some id associated with them. Underneath the drop down there is a text box and underneath the text box some images. so like the following

<drop down box>
______________
<textbox _content_ loaded via ajax onchange of drop down box>
<some images loaded via ajax onchange of drop down box>

I want to query the DB everytime the drop down menu is changed and populate the text box with info from DB and load the images that were fetched from the DB.

is there some ajax library that can be used for this? I assume there will be a php page to execute the query and send the result back to the main page?

can you guys tell me some examples/tutorials I should be looking at.

  • 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-12T11:15:40+00:00Added an answer on May 12, 2026 at 11:15 am

    The easiest way is using Jquery. For example you could do something like this.

    $('#dropdown').change(function(){ //listen for the change event of #dropdown box
        $.get('example.com/script.php', 
            {$('#dropdown').val()}, //send the value of dropdown as GET parameter 'val'
            function(data){
            $('#content').html(data.content);
            //first clear the image area:
            $('#imgs').empty();
            //Insert all the images
            for(x in data.imgs){
                $('#imgs').append('<img src="'+data.imgs[x]+'">');
            }
        }, 'json');
    });
    

    That is supposing your HTML looks something like this:

    <select id='dropdown'>
        <option value='1'>Option1</option>
        <option value='2'>Option2 etc.</option>
    </select>
    
    <div id='content'>I contain the content, I might as well be a textarea or something else, as long is my id='content'</div>
    <div id='imgs'><img src='iContainImgs.jpg'></div>
    

    Then on the server side you create a Json object with the following structure:

    content: "all the content",
    imgs: array('img1.jpg', 'img2.jpg', 'etc')
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a php page to capture sales orders. it has a dependant drop
Iam working on Ubuntu.(Linux) I want to redirect from the page one.php to two.php,
Later this year I want to release a PHP framework that I've been working
let's say I'm working on a site that has 8 to 10 different html/php
I am writing a web page in PHP that will provide some useful tools
I'm working in PHP to allow users to delete content and I want delete
Hai i want to generated an automated click event. I am working in php
I'm working on Ubuntu.(Linux) I want to display all .php pages to .html in
want to rewrite urls like site.com/software to wp-content/themes/dir/software.php and something is not working.. Here's
Im working on a website (html,css,javascript, ajax, php,mysql), and I want to restrict 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.