Justtechjobs.com Find a programming school near you






Online Campus Both


php-windows | 2001042

RE: [PHP-WIN] Dynamic Pulldown lists From: Svensson, B.A.T. (B.A.T.Svensson <email protected>)
Date: 04/19/01

>-----Original Message-----
>From: Robert Trembath [mailto:robert <email protected>]
>Sent: Thursday, April 19, 2001 10:10 PM
>To: php-windows <email protected>; php-dev <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 Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-windows-unsubscribe <email protected>
For additional commands, e-mail: php-windows-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>