<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>Mind Tree &#187; XML</title> <atom:link href="http://www.hurricanesoftwares.com/technology/xml/feed/" rel="self" type="application/rss+xml" /><link>http://www.hurricanesoftwares.com</link> <description>For Developers, Designers and SEO Specialists</description> <lastBuildDate>Wed, 21 Sep 2011 06:12:09 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.2.1</generator> <item><title>Microformats in Sementic Web</title><link>http://www.hurricanesoftwares.com/microformats-in-symentic-web/</link> <comments>http://www.hurricanesoftwares.com/microformats-in-symentic-web/#comments</comments> <pubDate>Tue, 27 Jan 2009 08:02:34 +0000</pubDate> <dc:creator>Ashish</dc:creator> <category><![CDATA[XML]]></category><guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=339</guid> <description><![CDATA[What are Microformats? Microformats are a way of adding simple markup to human-readable data items such as events, contact details or locations, on web pages, so that the information in them can be extracted by software and indexed, searched for, saved, cross-referenced or combined. More technically, they are items of semantic markup, using just standard [...]]]></description> <wfw:commentRss>http://www.hurricanesoftwares.com/microformats-in-symentic-web/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Dynamic XML document construction with the PHP DOM</title><link>http://www.hurricanesoftwares.com/dynamic-xml-document-construction-with-the-php-dom/</link> <comments>http://www.hurricanesoftwares.com/dynamic-xml-document-construction-with-the-php-dom/#comments</comments> <pubDate>Thu, 15 May 2008 11:27:35 +0000</pubDate> <dc:creator>Ashish</dc:creator> <category><![CDATA[PHP]]></category> <category><![CDATA[XML]]></category><guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=160</guid> <description><![CDATA[When working with XML-based applications, developers often find themselves facing the requirement to generate XML-encoded data structures on the fly. Examples of this include an XML order template based on user input in a Web form, or an XML representation of a server request or client response based on run-time parameters. Although this task might [...]]]></description> <wfw:commentRss>http://www.hurricanesoftwares.com/dynamic-xml-document-construction-with-the-php-dom/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Running XPath queries in PHP</title><link>http://www.hurricanesoftwares.com/running-xpath-queries-in-php/</link> <comments>http://www.hurricanesoftwares.com/running-xpath-queries-in-php/#comments</comments> <pubDate>Thu, 15 May 2008 10:56:55 +0000</pubDate> <dc:creator>Ashish</dc:creator> <category><![CDATA[PHP]]></category> <category><![CDATA[XML]]></category><guid
isPermaLink="false">http://www.hurricanesoftwares.com/?p=158</guid> <description><![CDATA[XPath is a language that allows you to address parts of an XML document, making XSLT transformations practically necessary. It also makes it an invaluable tool for managing XML data in applications such as Web applications. Microsoft provides XPath functionality through the selectSingleNode() and selectNodes() methods on DOM nodes and documents. However, PHP uses functions [...]]]></description> <wfw:commentRss>http://www.hurricanesoftwares.com/running-xpath-queries-in-php/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Parsing XML using PHP : Good example</title><link>http://www.hurricanesoftwares.com/parsing-xml-using-php-good-example/</link> <comments>http://www.hurricanesoftwares.com/parsing-xml-using-php-good-example/#comments</comments> <pubDate>Thu, 06 Mar 2008 13:20:56 +0000</pubDate> <dc:creator>crazy4c</dc:creator> <category><![CDATA[PHP]]></category> <category><![CDATA[XML]]></category> <category><![CDATA[JavaScript]]></category> <category><![CDATA[MySQL]]></category><guid
isPermaLink="false">http://www.hurricanesoftwares.com/2008/03/06/parsing-xml-using-php-good-example/</guid> <description><![CDATA[The following example illustrates how to use an external entity reference handler to include and parse other documents, as well as how PIs can be processed, and a way of determining &#34;trust&#34; for PIs containing code. Consider the following XML&#8217;s &#60; ?xml version=&#8217;1.0&#8242;?&#62; &#60; !DOCTYPE chapter SYSTEM &#34;/just/a/test.dtd&#34; [ &#60;!ENTITY plainEntity &#34;FOO entity&#34;&#62; &#60; !ENTITY [...]]]></description> <wfw:commentRss>http://www.hurricanesoftwares.com/parsing-xml-using-php-good-example/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Parsing XML using PHP</title><link>http://www.hurricanesoftwares.com/parsing-xml-using-php/</link> <comments>http://www.hurricanesoftwares.com/parsing-xml-using-php/#comments</comments> <pubDate>Thu, 06 Mar 2008 13:09:37 +0000</pubDate> <dc:creator>Ashish</dc:creator> <category><![CDATA[PHP]]></category> <category><![CDATA[XML]]></category> <category><![CDATA[JavaScript]]></category> <category><![CDATA[MySQL]]></category><guid
isPermaLink="false">http://www.hurricanesoftwares.com/2008/03/06/parsing-xml-using-php/</guid> <description><![CDATA[Load an XML file as data using PHP By handling mime-types and using browser detection, CodeHelp has already shown how to export XML using a PHP script. PHP can also receive XML as input &#8211; using the XML parser: if (!($fp=@fopen(&#34;./contactsbare.xml&#34;, &#34;r&#34;))) &#160;&#160;&#160;&#160;&#160;&#160;&#160; die (&#34;Couldn&#8217;t open XML.&#34;); $usercount=0; $userdata=array(); $state=&#8221;; if (!($xml_parser = xml_parser_create())) &#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]]]></description> <wfw:commentRss>http://www.hurricanesoftwares.com/parsing-xml-using-php/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>All about Extensible Markup Language (XML)</title><link>http://www.hurricanesoftwares.com/all-about-extensible-markup-language-xml/</link> <comments>http://www.hurricanesoftwares.com/all-about-extensible-markup-language-xml/#comments</comments> <pubDate>Thu, 06 Mar 2008 11:12:45 +0000</pubDate> <dc:creator>Matt</dc:creator> <category><![CDATA[XML]]></category> <category><![CDATA[Frameworks]]></category> <category><![CDATA[JavaScript]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[PHP]]></category><guid
isPermaLink="false">http://www.hurricanesoftwares.com/2008/03/06/all-about-extensible-markup-language-xml/</guid> <description><![CDATA[Extensible Markup Language (XML) is a general-purpose specification for creating custom markup languages. It is classified as an extensible language because it allows its users to define their own elements. Its primary purpose is to facilitate the sharing of structured data across different information systems, particularly via the Internet, and it is used both to [...]]]></description> <wfw:commentRss>http://www.hurricanesoftwares.com/all-about-extensible-markup-language-xml/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/35 queries in 0.031 seconds using disk: basic
Object Caching 3411/3478 objects using disk: basic

Served from: www.hurricanesoftwares.com @ 2012-02-08 04:23:47 -->
