Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is XML
What is XML?
✍: Guest
XML (Extensible markup language) is all about describing data. Below is a XML which describes invoice data.
<?xml version="1.0" encoding="ISO-8859-1"?> <invoice> <productname>Shoes <qty>12 <totalcost>100 <discount>10 </invoice>
An XML tag is not something predefined but it is something you have to define according to your needs. For instance in the above example of invoice all tags are defined according to business needs. The XML document is self explanatory, any one can easily understand looking at the XML data what exactly it means.
2007-10-31, 5332👍, 0💬
Popular Posts:
What Is a CAPTION Tag/Element? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells A "capti...
Does there exist any other function which can be used to convert an integer or a float to a string? ...
How To Export Data to an XML File? - Oracle DBA FAQ - Introduction to Oracle SQL Developer If you wa...
How do we host a WCF service in IIS? Note: - The best to know how to host a WCF in IIS is by doing a...
What are unadjusted function points and how is it calculated? Unadjusted function points = ILF + EIF...