This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| header("Content-type: text/xml; charset=utf-8"); | |
| //create your XML document, using the namespaces | |
| $urlset = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" /><!--?xml version="1.0" encoding="UTF-8"?-->'); | |
| //iterate over your sites pages or whatever you like | |
| foreach (getMyPagesOrWhatEver() as $item): | |
| //add the page URL to the XML urlset |