Advertisement

08.29.2007 at 07:01AM PDT, ID: 22794337
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.4

Dynamic form fields using php and javascript

Asked by CMGL in PHP Scripting Language, JavaScript, JScript

Tags: , , ,

I have read various solutions to this problem but I am having trouble getting mine to work, I thought I would give the basics of what I am trying to do and hope someone can help, I am intermediate in PHP but Javascript I'm a noob.

I am trying to create a form that filters each of the subsequent list boxes, I require the form to have 4 drop down lists (There are more fields on the form but they are not linked to the database) that must filter and populate the underlying list box.

The form fields are as follows:-

Simulation
Season
Race
Driver

The tables names and fields are as follows:-

sd_sls_t_games - IDgame, GameName
sd_sls_t_seasons - IDseasin, IDGame, SeasonName
sd_sls_t_races - IDrace, IDseason, IDtracks ----- sd_sls_t_tracks - IDtracks, TrackName
sd_sls_t_driver_cars - IDdriver, IDseason ----- sd_sls_t_driver - IDdriver, FName, LName.

I have created this SQL which brings back all the data I need:-

SELECT g.GameName
, s.SeasonName
, t.TrackName
, CONCAT(d.FName,' ',d.LName) AS DriverName
FROM sd_sls_t_games g
, sd_sls_t_seasons s
, sd_sls_t_races r
, sd_sls_t_tracks t
, sd_sls_t_driver_cars dc
, sd_sls_t_drivers d
WHERE g.IDgame = s.IDgame
AND s.IDseason = r.IDseason
AND r.IDtracks = t.IDtracks
AND r.IDseason = dc.IDseason
AND dc.IDdriver = d.IDdriver

I am really stuck as to how to break this down, any help on this would be much appreciated. I am not sure of the best way to do it, do I re-sumbit the form each time and post the result or is there a better way.

ThanksStart Free Trial
 
Loading Advertisement...
 
[+][-]08.29.2007 at 07:12AM PDT, ID: 19791444

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: PHP Scripting Language, JavaScript, JScript
Tags: database, dynamic, php, populate
Sign Up Now!
Solution Provided By: OMC2000
Participating Experts: 2
Solution Grade: A
 
 
[+][-]08.29.2007 at 07:14AM PDT, ID: 19791459

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.29.2007 at 07:44AM PDT, ID: 19791760

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]08.29.2007 at 08:09AM PDT, ID: 19792062

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08.29.2007 at 08:26AM PDT, ID: 19792221

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.15.2008 at 05:12AM PDT, ID: 22006065

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]07.19.2008 at 07:53PM PDT, ID: 22044375

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-42 / EE_QW_1_20070628