>
> [+
> "<select name="sel">
> <option value="1">1
> <option value="2">2
> <option value="3">3
> </select>"
> +]
>
> doesn't.
>
Yes, this doesn't work, you can either write
<select name="sel">
<option value="[+ $v1 +]">1
<option value="[+ $v2 +]">2
<option value="[+ $v3 +]">3
</select>
if this is possible in your case, or you must run the pieces of code thru
the Execute function:
[-
$code = q{ <select name="sel">
<option value="1">1
<option value="2">2
<option value="3">3
</select> } ;
Execute ({input => \$code, output => \$out}) ;
-]
[+ local $escmode = 0 ; $out +]
Gerald
-------------------------------------------------------------
Gerald Richter ecos electronic communication services gmbh
Internetconnect * Webserver/-design/-datenbanken * Consulting
Post: Tulpenstrasse 5 D-55276 Dienheim b. Mainz
E-Mail: [EMAIL PROTECTED] Voice: +49 6133 925131
WWW: http://www.ecos.de Fax: +49 6133 925152
-------------------------------------------------------------
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]