Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Placing variable in FORM field

From: andreas:bolka:gmx at: 11-Jul-2003 18:09

Friday, July 11, 2003, 4:53:01 PM, Gabriele wrote:
> Hi John, > On Friday, July 11, 2003, 4:21:51 PM, you wrote:
HJ>> print [<input type="text" name="u_menu_title" size="20" value=b1>]
> print [{<input type="text" name="u_menu_title" size="20" value="} b1 {">}]
print rejoin [ {<input type="text" name="u_menu_title" size="20" value="} b1 {">} ] might be even better, unless you prefer spaces surrounding your actual value.
>> foo: "bar"
== "bar"
>> print [ {value="} foo {"} ]
value=" bar "
>> print rejoin [ {value="} foo {"} ]
value="bar" -- Best regards, Andreas mailto:[andreas--bolka--gmx--net]