| ||
The W3C definition of XInclude is available at http://www.w3.org/TR/xinclude. Essentially, you can include one script within another. The following script should merge two included XML regional documents into a single demographics document containing a collection of regions (this does not function in Internet Explorer 6):
<?xml version="1.0"?> <demographics xmlns:xi="http://www.w3.org/2001/XInclude"> <xi:include href="./Africa.xml"/> <xi:include href="./Asia.xml"/> </demographics>
| ||