trawler Posted May 9, 2006 Share Posted May 9, 2006 I'm desiging a form which uses fields drawn out of a mysql db.I've already managed to figure out how to display a drop-down menu that's drawn from a mysql table.My problem, however, is with a sub-menu.Basically, it's a form that's supposed to give network technicians some information about the clients to which they're sent.Whoever fills out the form picks a router/fw type from a drop-down menu (connected to a table in the mysql db), and then a sub-menu is supposed to open up, another drop-down, from which they pick the specific model.I've created one big table containing all the models we use, and it can be sorted according to manufacturer.My question is - I want to have one single query made from the db (SELECT *), from which I can extract the appropriate records later.I suppose I need to set up an array, but i'm not sure how to...Could use your help :) Quote Link to comment Share on other sites More sharing options...
ober Posted May 9, 2006 Share Posted May 9, 2006 Well keep in mind that PHP is a server-side scripting language, so you're going to either have to use Javascript or AJAX to open the second drop down. Quote Link to comment Share on other sites More sharing options...
trawler Posted May 9, 2006 Author Share Posted May 9, 2006 [!--quoteo(post=372617:date=May 9 2006, 09:50 AM:name=ober)--][div class=\'quotetop\']QUOTE(ober @ May 9 2006, 09:50 AM) [snapback]372617[/snapback][/div][div class=\'quotemain\'][!--quotec--]Well keep in mind that PHP is a server-side scripting language, so you're going to either have to use Javascript or AJAX to open the second drop down.[/quote]Sure, I already written the javascript function that does that.My problem however is how to store and then manipulate the data (sort and pick specific records), without having to perform multiple queries. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.