Re: [PHP] [php] dependable combo boxes with mysql database

2005-11-08 Thread Richard Lynch
On Fri, November 4, 2005 11:24 am, Bhoomi Vora wrote: > I have a php page which contains three combo boxes. > The first one will have the value > > from the mysql database table on page load itself. > > Then depending upon the value selected in the first > combobox the second combo box > > should b

Re: [PHP] [php] dependable combo boxes with mysql database

2005-11-04 Thread Pranav Negandhi (concept-I)
This might be slightly OT on this list, but here goes nothing. 1. Submit the form when the user shifts focus from D1 using Javascript's onBlur event 2. On the server side, use PHP to retrieve the values for D2 and generate the page again 3. Repeat 1 & 2 when the value of D2 changes. HTH Prana

RE: [PHP] [php] dependable combo boxes with mysql database

2005-11-04 Thread Jay Blanchard
[snip] In the above code there are three combo box namely D1, D2 and D3. D1 will be populated on pageload. Now D2 should be populated on event like 'onblur' to D1 and similarly D3 should be populated on event like 'onblur' to D2. Pl. give me the exact code or proper guideline how should I accompl