Creating XML file header.
Posted
by Waheed
on Stack Overflow
See other posts from Stack Overflow
or by Waheed
Published on 2009-06-25T09:57:02Z
Indexed on
2010/03/27
8:03 UTC
Read the original article
Hit count: 597
Hi, I want to create an XML file with folllowing header dynamically.
<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
How should i create this urlset node.
© Stack Overflow or respective owner