>-----Original Message-----
>From: Robert Trembath [mailto:[EMAIL PROTECTED]]
>Sent: Thursday, April 19, 2001 10:10 PM
>To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
>Subject: [PHP-WIN] Dynamic Pulldown lists
>
>
>A little help from anyone please.
>
>I know this was discussed before but I can't find it now that I need it. I
>want to dynamically populate a pulldown list from a mysql query based on
>what is selected from another pulldown list populated by a query from
mysql.
>If the first choice is changed a different list of option is populated in
>the second. Please help!

In meta code:

DO DBQUERY <fetch [list] with argument [which list] from the previuos form>

DO WRITE   "<FORM ... etc, etc>"
DO WRITE   "  <SELECT ... etc, etc, blaha, blaha>
DO WHILE <not end of the [list]> 
  DO WRITE "     <OPTION VALUE=" + <your value for this [list].[element] +
">"
  DO WRITE "       [list].[element]"
  DO WRITE "     </OPTION>"
END WHILE
DO WRITE   "   </SELECT>"
DO WRITE   "</FORM>"

And at last and most important:

WHILE (NOT <understand HTML>)
  GOTO http://www.w3.org/MarkUp/Guide/
END WHILE
IF (<still wants to learn more>)
  GOTO http://www.w3.org/MarkUp/Guide/Advanced.html
ELSE IF (<wants to read core specification>)
  GOTO http://www.w3.org/TR/html401/
ELSE IF NOT (<know how to program something>)
  <read Knut's handbook>
ELSE IF (NOT <problem still solved>)
  <then ask for help>
END IF

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to