Re: [PHP] dynamic lists

2007-01-18 Thread tedd
At 2:33 PM -0800 1/17/07, Kevin Murphy wrote: Not saying I disagree with you. which is why i tossed it out there as an FYI rather than anything else. But its something that you should be aware of when designing a site and weighing your options. For me, working for a governmental

Re: [PHP] dynamic lists

2007-01-18 Thread Scripter47
Hey! I got the same problem with a php chat.. look at http://wsd.riddergarn.dk?p=chat Here is a link to a AJAX site: http://javascript.internet.com/ajax/ Here is the tutorial that helped my...: http://javascript.internet.com/ajax/ajax-navigation2.html [FONT=23]Scripter47[/FONT] Don

Re: [PHP] dynamic lists

2007-01-18 Thread Jochem Maas
tedd wrote: At 2:33 PM -0800 1/17/07, Kevin Murphy wrote: Not saying I disagree with you. which is why i tossed it out there as an FYI rather than anything else. But its something that you should be aware of when designing a site and weighing your options. For me, working for a

[PHP] dynamic lists

2007-01-17 Thread Don
I'm a noob. My question is whether PHP can produce dynamic drop lists and if so what the tags are so that I can look them up. By dynamic drop list I mean the type where the options contained in the subsequent list depend on what was picked in the previous list without clicking submit.

RE: [PHP] dynamic lists

2007-01-17 Thread Jay Blanchard
[snip] By dynamic drop list I mean the type where the options contained in the subsequent list depend on what was picked in the previous list without clicking submit. [/snip] PHP is server side, you need to do this with AJAX or Javascript -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] dynamic lists

2007-01-17 Thread Brad Fuller
-Original Message- From: Jay Blanchard [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 17, 2007 4:05 PM To: Don; php-general@lists.php.net Subject: RE: [PHP] dynamic lists [snip] By dynamic drop list I mean the type where the options contained in the subsequent list depend

Re: [PHP] dynamic lists

2007-01-17 Thread Kevin Murphy
On Jan 17, 2007, at 1:39 PM, Brad Fuller wrote: -Original Message- From: Jay Blanchard [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 17, 2007 4:05 PM To: Don; php-general@lists.php.net Subject: RE: [PHP] dynamic lists [snip] By dynamic drop list I mean the type where the options

Re: [PHP] dynamic lists

2007-01-17 Thread Jochem Maas
Kevin Murphy wrote: On Jan 17, 2007, at 1:39 PM, Brad Fuller wrote: -Original Message- From: Jay Blanchard [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 17, 2007 4:05 PM To: Don; php-general@lists.php.net Subject: RE: [PHP] dynamic lists [snip] By dynamic drop list I

Re: [PHP] dynamic lists

2007-01-17 Thread Kevin Murphy
] dynamic lists [snip] By dynamic drop list I mean the type where the options contained in the subsequent list depend on what was picked in the previous list without clicking submit. [/snip] PHP is server side, you need to do this with AJAX or Javascript -- PHP General Mailing List (http

Re: [PHP] dynamic lists

2007-01-17 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2007-01-17 23:20:23 +0100: Kevin Murphy wrote: On Jan 17, 2007, at 1:39 PM, Brad Fuller wrote: #1) Submit the form (to itself) when a user chooses an option from the first list (using onChange=form.submit()) then with PHP query the database for the second set of

Re: [PHP] dynamic lists

2007-01-17 Thread Jochem Maas
Roman Neuhauser wrote: # [EMAIL PROTECTED] / 2007-01-17 23:20:23 +0100: Kevin Murphy wrote: On Jan 17, 2007, at 1:39 PM, Brad Fuller wrote: #1) Submit the form (to itself) when a user chooses an option from the first list (using onChange=form.submit()) then with PHP query the database for