What is XML?

XML is browser based, and it is not dependant on the type of server that you are running your website on. 

XML stands for Extensible Markup Language. It was developed as a way to improve on HTML and SGML. XML is not a language in the true sense, but rather a system for defining other languages. XML tags are not predefined in XML. You must define your own tags. XML uses a Document Type Definition (DTD) or an XML Schema to describe the data. 

If you wish to use XML, you should have some basic understanding of WWW, HTML and the basics of building Web pages Web scriptinglanguages like JavaScript or VBScript. 

XML is not a replacement for HTML
XML and HTML were designed with different goals: 

XML was designed to describe data and to focus on what data is. 
HTML was designed to display data and to focus on how data looks. 

HTML is about displaying information, while XML is about describing information. 

XML does not DO anything. XML is created to structure, store and to send information. 

The following example is a note, stored as XML

<note> 
<to>Jonathan</to> 
<from>Rob</from> 
<heading>Reminder</heading> 
<body>Don't forget the meeting today!</body> 
</note> 

The note has a header and a message body. It also has sender and receiver information. But still, this XML document does not DO anything. It is just pure information wrapped in XML tags. Someone must write a piece of software to send, receive or display it. 

XML tags are not predefined. You must "invent" your own tags. 

The tags used to mark up HTML documents and the structure of HTML documents are predefined. The author of HTML documents can only use tags that are defined in the HTML standard. 

XML allows the author to define his own tags and his own document structure. 

The tags in the example above (like <to> and <from>) are not defined in any XML standard. These tags are "invented" by the author of the XMLdocument. 

It is important to understand that XML is not a replacement for HTML. In future Web development it is most likely that XML will be used to describe the data, while HTML will be used to format and display the same data.

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How do I edit php.ini (PHP settings) for my hosting package?

Becuase of the way in which we run PHP, you are able to customise its behaviour with php.ini...

How can I change the file name extension of my index page?

It is possible to name your default index page something other than index.html, index.cgi,...

How can I change the file name extension of my index page?

It is possible to name your default index page something other than index.html, index.cgi,...

Does Planet Hippo support SSI (Server Side Includes)?

Yes we do. SSI (Server Side Includes) are tags that are placed in HTML pages, and evaluated on...

What is the list of Default Documents in order of priority?

The list of default documents (pages which IIS will serve when only the sub directory is...