Introduction
  Publishing web pages
  RXML
  Information tags
  String tags
  Variable tags
    <set>
    <unset>
    <cset>
    <append>
    <define>
    <undefine>
    <insert>
    <use>
    <formoutput>
  URL tags
  If tags
  Graphics tags
  Database tags
  LDAP
  Programming tags
  SSI tags
  Image maps
  IntraSeek
  LogView
  Templates
  Navigation
  SiteBuilder tags
  Supports system
  Security
  Appendix
 
<append> Main RXML parser

 

Append a value to a variable.

 

Attributes

variable=variable
The variable to append to.

debug
Provide debug messages in case the operation fails. <append> will normally fail silently.

define=define
Append the contents of this define.

from=variable
Append the value of the named variable.

other=variable
Append the value of this other variable. This is mostly useful from within output tags like <sqloutput> where all columns from the sql result will be available as other variables.

value=string
Append the variable to this value.

 

Example


<set variable=foo value="Hello">
<append variable=foo value=" World">

<insert variable=foo>

Hello World