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!
A compilation of some user's questions...
AWS Raw WebDNA LAMP-Plus WebServerAmazon Web Services (AWS) README for Machine Image ID...
Tips and TricksA list of user-submitted tips ...
WebDNA ModulesA list of the currently available modules...
WebDNA LibrariesA list of available libraries for WebDNA...
Technical Change HistoryThis Technical Change History provides a reverse chronological list of WebDNA changes...
will display a random number...
[shownext][shownext] is a special context used to create links (or more accurately...
[movefile]This instructions move a file from one location to another...
[deletefile]Deleting a file from your website...
[xslt]The [xslt] Context allows the WebDNA programmer to 'apply' an XSL style sheet to an XML document and thus 'transform' the XML data into any format the programmer desires (usually HTML)...
[SQLconnect]Opens and persists a 'named' connection to a SQL server...