On 10-Mar-01 RealGM wrote:
> Hi,
>
> Does anyone know how I can create a combo box in my php file that reads the
> options in from a database field?
>
> I can create combo boxes fine containing values that I enter, but I want it
> to read the values from the database into the drop down box for t
Hi Michael,
Yes I do! Take a look at the code snippet below:
echo "";
$level2 = $db->execute("select typename from types");
do {
$value=$level2->fields[0];
echo "$value";
$level2->nextRow();
} while (!$level2->EOF);
$level2->close();
echo "";
2 matches
Mail list logo