473,574 Members | 2,927 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

PHP listbox

121 New Member
hi

I have two listboxes, if i select an item from first listbox relative items(fetching from database) of selected item should be loaded into second listbox. how we can solve this problem in php.

one thing i already got the above result using php + javascript.
i need the code which is written purely in PHP without using javascript, is it possible?

regards,
Shiva
Aug 24 '07 #1
1 7564
Atli
5,058 Recognized Expert Expert
Yes, it is indeed possible.
You can simply populate your first list-box in any way you see fit and instruct it, via the 'onChange' event to submit the form. The form's action property would point to the very page it is on, causing the page to refresh and the data to be sent along for the ride.
The you can simply have you PHP code check if the first box has a value and populate your second box based on the value of the first box.

This example is quite static, but shows what I mean. You will of course have to replace the huge array of data with data from whatever source you get your data from and modify the foreach() loops accordingly.
Expand|Select|Wrap|Line Numbers
  1. <?php
  2. // Get the values of the list-boxes
  3. $firstBox = @$_POST['firstBox'];
  4. if(empty($firstBox)) 
  5.     $firstBox = "first";
  6. $secondBox = @$_POST['secondBox'];
  7. if(empty($secondBox)) 
  8.     $secondBox = "first";
  9.  
  10. // Print the form header
  11. echo '<form action="?" method="POST">';
  12.  
  13. // Crete the data for the boxes
  14. // Note, this will most likely be
  15. // replace by your date, however you get it.
  16. $boxData = array(
  17.     "first" => array(
  18.         "Title" => "First",
  19.         "Value" => "first",
  20.         "Data" => array(
  21.             "first" => "First of the first",
  22.             "second" => "Second of the first",
  23.             "third" => "Third of the first"
  24.         )
  25.     ),
  26.     "second" => array(
  27.         "Title" => "Second",
  28.         "Value" => "second",
  29.         "Data" => array(
  30.             "first" => "First of the second",
  31.             "second" => "Second of the second",
  32.             "third" => "Third of the second"
  33.         )
  34.     )
  35. );
  36.  
  37. // Print the first box
  38. echo '<select name="firstBox" onChange="submit();">';
  39. foreach($boxData as $v) {
  40.     $selected = "";
  41.     if($v['Value']  == $firstBox) $selected = " selected";
  42.     echo '    <option value="'. $v['Value'] .'"'. $selected .'>'. $v['Title'] .'</option>';
  43. }
  44. echo '</select>';
  45.  
  46. // Print the second box
  47. echo '<select name="secondBox" onChange="submit();">';
  48. foreach($boxData[$firstBox]['Data'] as $k => $v) {
  49.     $selected = "";
  50.     if($k  == $secondBox) $selected = " selected";
  51.     echo '    <option value="'. $k .'"'. $selected .'>'. $v .'</option>';
  52. }
  53. echo '</select>';
  54.  
  55.  
  56. // Close the form
  57. echo '</form>';
  58.  
  59. // Show the selected boxes
  60. echo "<p>You have selected: $firstBox > $secondBox </p>";
  61. ?>
  62.  
Aug 26 '07 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

17
3099
by: amber | last post by:
Hello. Can someone tell me what I may be doing wrong here? I'm using the code (lboxRP is a listbox): Dim newRPindex As Integer newRPindex = Me.lboxRP.FindString(RP) Me.lboxRP.SetSelected(newRPindex, True) When the last line executes, I get an error message:
3
3601
by: Paul T. Rong | last post by:
I have a listbox (of product names) control on my form. I want to pass the selected item (a product name) to a subform, and the product unitprice should apear automatically next to the product name in the subform. Is it possible? How do I do this? Thanks in advance. Paul from Slovakia
8
2873
by: Oddball | last post by:
Ok - I have a ListBox control and I'm ready to write my own DrawItem event handler. What I want to draw as the item is another control. I have created a user control that I would like to list in this listbox but I can't for the life of me figure out how to draw the control inside ListBox... I get as far as: private void...
2
2908
by: collie | last post by:
Hi, I have 2 listboxes. The first gets populated from the db as soon as the page loads. The second listbox get populated based on the user's selection from the first listbox. However, currently the code is such that with each selection there is a postback. We want to avoid it using filter and javascript. I am not using ADO.NET but adodbc...
6
2863
by: Chris Leuty | last post by:
I am populating a multiselect Listbox from a dataset, with the content of the listbox filled by one table, and the selections determined from another table. So far, I have been keeping the dataset a denormalized mirror of the database, but I'm not having much luck getting the selection logic down (I haven't found a 'hook' where I can access...
1
2259
by: yamne | last post by:
I have a problem. When I click in edit datagrid button I show two listbox and two button. I use two button to move data between two listbox. My problem is that I can't call the listbox in the button_click function because the only way to find the listbox is: (listbox)e.item.findcontrol What s the solution to this problem?
7
4523
by: Dave | last post by:
Hi all, After unsuccessfully trying to make my own dual listbox control out of arraylists, I decided to look for a 3rd party control. I've looked for over a week now and can't find anything but ASP.Net stuff when I need a Windows Form control. I've seen dual listbox populators in countless Windows applications, and have seen them run very...
3
2284
by: Ali Chambers | last post by:
Hi, I have created a listbox called "dtlist1" on my VB.NET form. I call a procedure as follows: Private Sub openfile(flname As String) dtlist1.Items.Clear() etc..
1
4015
by: Sunray | last post by:
I have a form called the sales form and i have 2 sets of listboxes So what happens is. i add items form the bottom set of list boxes which are bound to a data base to the top set of list boxes which are not bound, I select from the bottom set and add to the top set which works fine, but now i decide to remove an item from the top set. when i...
5
2839
by: Academia | last post by:
(If you've seen this in the drawing NG, sorry. I inadvertently sent it there.) I have a listbox populated with Objects. The Class has a String field that ToString returns. I assume that is what the ListBox uses for its display. Correct?
0
7805
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
8053
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8237
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7817
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
8098
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6454
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5622
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3741
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
1341
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.