[Typo3-UG Oesterreich] Dropdown-Box aus DB

Wolfgang Klinger wolfgang at stufenlos.net
Fri Oct 21 12:13:10 CEST 2005


 Hallo!

 Karl Nabinger schrieb folgendes am 21.10.2005:
> kann mir jemand einen Tip geben wo ich Infos zu Erstellen einer 
> dynamischen Auswahlliste (Dropdown-Listbox) in einem BE Modul finde.

 SELECT * FROM be_users;
 $content .= '<select name="be_user">';
 foreach ($be_users as $be_user) {
    $content .= '<option value="'.$be_user['uid'].'">'.$be_user['username'].'</option>';
 }
 $content .= '</select>';

 ???


 lg
 Wolfgang





More information about the TYPO3-at mailing list