On Thu, 16 Sep 2004 13:02:31 +0100
"Harlequin" <[EMAIL PROTECTED]> wrote:

> Hi all.
> 
> Hoping this might be relatively easy...
> 
> I'm wondering if I can create a dropdown menu
> (<option>ABCDE</option>) by using a select statement and
> then populating this using PHP...?

Yes.

Hint: Do a "foreach" on the result (of the query) then 
inside the loop, just do an 

  echo "<option>$value</option>"; 

or something like that.

-- 
- E -
copperwalls was here ;)

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to