Re: [PHP] Menu populated based on previous menu

2003-10-28 Thread Nitin
I've solved same kind of problems with the help of HTML frames, if you are interested, drop me a mail, or if you find better option, please let me know. Nitin - Original Message - From: Robb Kerr [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 9:15 PM Subject:

Re: [PHP] Menu populated based on previous menu

2003-10-28 Thread CPT John W. Holmes
From: Robb Kerr [EMAIL PROTECTED] Searched all the sites I could find for this problem to no avail. I have two dropdown menus in a form. The first menu contains a list of MANUFACTURERS obtained from a database. The second contains a list of MODELS also obtained from the database. I want the

Re: [PHP] Menu populated based on previous menu

2003-10-28 Thread Larry E . Ullman
Searched all the sites I could find for this problem to no avail. I have two dropdown menus in a form. The first menu contains a list of MANUFACTURERS obtained from a database. The second contains a list of MODELS also obtained from the database. I want the second menu to be populated based upon

Re: [PHP] Menu populated based on previous menu

2003-10-28 Thread Robb Kerr
Thanx for the tips. I'll search the JavaScript sites and see what I can come up with. -- Robb Kerr Digital IGUANA -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Menu populated based on previous menu

2003-10-28 Thread Radu Manole
here is a link that might help http://www.macromedia.com/support/ultradev/ts/documents/client_dynamic_listb ox.htm Radu - Original Message - From: Robb Kerr [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 5:59 PM Subject: Re: [PHP] Menu populated based

Re: [PHP] Menu populated based on previous menu

2003-10-28 Thread Verdon Vaillancourt
- From: Robb Kerr [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 5:59 PM Subject: Re: [PHP] Menu populated based on previous menu Thanx for the tips. I'll search the JavaScript sites and see what I can come up with. -- Robb Kerr Digital IGUANA -- PHP

Re: [PHP] Menu populated based on previous menu

2003-10-28 Thread Robb Kerr
I've found some JavaScripts that will do what I require. Here's the question before I get to deeply into hacking the scripts... Can you embed PhP in JavaScript. In other words, the Java requires that arrays be filled. The entries into these arrays need to come from my database which is accessed

RE: [PHP] Menu populated based on previous menu

2003-10-28 Thread Pablo Gosse
PROTECTED] Subject: Re: [PHP] Menu populated based on previous menu I've found some JavaScripts that will do what I require. Here's the question before I get to deeply into hacking the scripts... Can you embed PhP in JavaScript. In other words, the Java requires that arrays be filled. The entries

Re: [PHP] Menu populated based on previous menu

2003-10-28 Thread Robb Kerr
On Tue, 28 Oct 2003 09:52:02 -0800, Pablo Gosse wrote: Hi Robb. This is exactly what you'll need to do. Something like the following, assuming you're populating an array with user information: script type=text/javascript !-- var users = new Array(); ?php $count = 0; while

RE: [PHP] Menu populated based on previous menu

2003-10-28 Thread Luis Lebron
You may want to look at the following article: http://www.zend.com/zend/tut/drop-down.php Luis -Original Message- From: Robb Kerr [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 9:46 AM To: [EMAIL PROTECTED] Subject: [PHP] Menu populated based on previous menu Searched all