RE: [PHP] php hide menu

2011-06-07 Thread admin
that is done, it is a little more complex. Richard L. Buskirk -Original Message- From: Chris Stinemetz [mailto:chrisstinem...@gmail.com] Sent: Tuesday, June 07, 2011 12:41 AM To: php-general@lists.php.net Subject: [PHP] php hide menu I have three drop down menus in my form. How do I make

Re: [PHP] php hide menu

2011-06-07 Thread Chris Stinemetz
If you do require the value from the first menu to be passed to the select statements for the other menus let me know I will explain how that is done, it is a little more complex. I would like to pass the value from the prior menu to the next. Would you please show me how to handle this?

RE: [PHP] php hide menu

2011-06-07 Thread Jay Blanchard
[snip] I would like to pass the value from the prior menu to the next. Would you please show me how to handle this? [/snip] As several have mentioned, this is a job for AJAX and JavaScript. Here is a good tutorial: http://www.yourinspirationweb.com/en/how-to-create-chained-select-with-p

Re: [PHP] php hide menu

2011-06-07 Thread tedd
At 11:40 PM -0500 6/6/11, Chris Stinemetz wrote: I have three drop down menus in my form. How do I make it so the second and third menus are only visible once the prior menu was selected? Chris: You mean something like this? http://php1.net/b/zipcode-states/ The explanation (and js) is

Re: [PHP] php hide menu

2011-06-07 Thread tedd
At 12:12 PM -0500 6/7/11, Chris Stinemetz wrote: Chris: You mean something like this? http://php1.net/b/zipcode-states/ The explanation (and js) is there. Yes, do you have a tutorial to go with the demo? Thank you, The demo is a tutorial. The javascript code is there -- just

[PHP] php hide menu

2011-06-06 Thread Chris Stinemetz
I have three drop down menus in my form. How do I make it so the second and third menus are only visible once the prior menu was selected? Below is the first two drop down menus. Thanks in advance. // Generating first menu using array. $markets = array('MCI' = 'Kansas City',

Re: [PHP] php hide menu

2011-06-06 Thread Joshua Kehn
Sounds like a good job for client side JavaScript. Regards, -Josh Joshua Kehn | josh.k...@gmail.com http://joshuakehn.com On Jun 7, 2011, at 12:40 AM, Chris Stinemetz wrote: I have three drop down menus in my form. How do I make it so the second and third