Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
|
Perl XML: Create Simple XML Doc with Records Perl XML programming example demonstrating how to create a simple XML document with records.
# file: xmlSimple3.pl
use chilkat;
# Perl example to create an XML document with records
$xml = new chilkat::CkXml();
# Create this XML:
# <?xml version="1.0" encoding="utf-8" ?>
# <data>
# <anon>
# <anon>
# <country>england</country>
# <capital>london</capital>
# </anon>
# <anon>
# <country>norway</country>
# <capital>oslo</capital>
# </anon>
# <anon>
# <country>india</country>
# <capital>new delhi</capital>
# </anon>
# </anon>
# </data>
$xml->put_Tag("data");
$anon0 = $xml->NewChild("anon","");
$anon1 = $anon0->NewChild("anon","");
$anon1->NewChild2("country","england");
$anon1->NewChild2("capital","london");
$anon1 = $anon0->NewChild("anon","");
$anon1->NewChild2("country","norway");
$anon1->NewChild2("capital","oslo");
$anon1 = $anon0->NewChild("anon","");
$anon1->NewChild2("country","india");
$anon1->NewChild2("capital","new delhi");
$xml->SaveXml("output/countries.xml");
|
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2007 Chilkat Software, Inc. All Rights Reserved.