Hello Uwe,
I'm glad you enjoy TBS :)
You can fill a listbox simply by merging a block.
The block can be define within the first item of the list in the template
wich is quite pratical with Dreamweaver.
For example this is the code for list of categories in this Forum application :
Html :
<option value="[cat.cat_id]">[cat.cat_title;block=opt]</option> |
Php :
$TBS->MergeBlock('cat',$cnx_id,'SELECT cat_id,cat_title FROM t_forum_category ORDER BY cat_order') ; |
Maybe I should add an exemple for that point in the examples set.