Perl Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript



Perl Examples

Quick Start
Perl Unicode
Perl Byte Array
Perl Certs
Perl Email
Perl Encryption
Perl FTP
HTML-to-XML
Perl HTTP
Perl IMAP
Perl MHT
Perl MIME
Perl RSA
Perl S/MIME
Perl Signatures
Perl Socket
Perl Spider
Perl Tar
Perl Upload
Perl XML
Perl XMP
Perl Zip

More Examples...
String
Email Object
POP3
SMTP
RSS
Atom
Self-Extractor

Unreleased...
Service
PPMD
Deflate
Bzip2
LZW
Bz2
DH Key Exchange
DSA
Icon

 

 

 

 

 

 

 

Perl XML: Create Simple XML Doc with Records

Perl XML programming example demonstrating how to create a simple XML document with records.

Download Perl Programming Example Scripts

# 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.