This context is used to iterate the attributes of a specific XML node.
numero = 286[xmlparse var=xml_var1][include file=example1.xml][/xmlparse]Attributes for the 'CD' node:
[xmlnode ref=xml_var1&path=indexed:1/1][content][/xmlnode]Are...
[xmlnodeattributes ref=xml_var1&path=indexed:1/1][name]=[value][/xmlnodeattributes]Results...Attributes for the 'CD' node:
<CD status="instock" id="123"><TITLE>Empire Burlesque</TITLE><ARTIST>Bob Dylan</ARTIST><COUNTRY>USA</COUNTRY><COMPANY>Columbia</COMPANY><PRICE>10.90</PRICE><YEAR>1985</YEAR></CD>Are... id=123status=instock To simplify the code, we could place the [xmlnodesattributes] context 'inside' of the [xmlnode] context. In this case, we will not need to supply the 'path' or 'ref' parameters to [xmlnodesattributes], since it will use the 'implied' XML node in the outer [xmlnode] context. We use...
[xmlparse var=xml_var1][include file=example1.xml][/xmlparse]Attributes for the 'CD' node:
[xmlnode ref=xml_var1&path=indexed:1/1][content]Are...
[xmlnodeattributes][name]=[value][/xmlnodeattributes][/xmlnode]Results...Attributes for the 'CD' node:
<CD status="instock" id="123"><TITLE>Empire Burlesque</TITLE><ARTIST>Bob Dylan</ARTIST><COUNTRY>USA</COUNTRY><COMPANY>Columbia</COMPANY><PRICE>10.90</PRICE><YEAR>1985</YEAR></CD>Are... id=123status=instock [xmlnodesattributes ref=...&path=...]
[xmlparse var=xml_var1][include file=example1.xml][/xmlparse]
[xmlnode ref=xml_var1&path=indexed:1/1]
[content]
[/xmlnode]
[xmlnodeattributes ref=xml_var1&path=indexed:1/1]
[name]=[value]
[/xmlnodeattributes]
<CD status="instock" id="123">
<TITLE>Empire Burlesque</TITLE>
<ARTIST>Bob Dylan</ARTIST>
<COUNTRY>USA</COUNTRY>
<COMPANY>Columbia</COMPANY>
<PRICE>10.90</PRICE>
<YEAR>1985</YEAR>
</CD>
[xmlparse var=xml_var1][include file=example1.xml][/xmlparse]
[xmlnode ref=xml_var1&path=indexed:1/1]
[content]
[xmlnodeattributes]
[name]=[value]
[/xmlnodeattributes]
[/xmlnode]
<CD status="instock" id="123">
<TITLE>Empire Burlesque</TITLE>
<ARTIST>Bob Dylan</ARTIST>
<COUNTRY>USA</COUNTRY>
<COMPANY>Columbia</COMPANY>
<PRICE>10.90</PRICE>
<YEAR>1985</YEAR>
</CD>
DOWNLOAD WEBDNA NOW!
WebDNA applications...
[biotype]BioType is a behavioral biometrics WebDNA function based on ADGS research and development (from version 8...
WebDNA reference...
F.A.QA compilation of some user's questions...
Tips and TricksA list of user-submitted tips ...
Technical Change HistoryThis Technical Change History provides a reverse chronological list of WebDNA changes...
will display a random number...
[loop]Loops through the enclosing text the specified number of times...
[listfiles]When listing files...
[listdatabases]Lists all the currently-open databases...
[if]This context displays HTML or executes WebDNA conditionally only if the expression is true...
[store][store] is a simple context that stores variables permanently...