Rating:

Author: Kevin Howard Goldberg
ISBN : B003HE5D7Q
New from $16.00
Format: PDF
Download file now Free XML: Visual QuickStart Guide for everyone book mediafire, rapishare, and mirror link
What is XML? XML, or eXtensible Markup Language, is a specification for storing information. It is also a specification for describing the structure of that information. And while XML is a markup language (just like HTML), XML has no tags of its own. It allows the person writing the XML to create whatever tags they need. The only condition is that these newly created tags adhere to the rules of the XML specification.
In the seven years since the first edition of “XML: Visual QuickStart Guide” was published, XML has taken its place next to HTML as a foundational language on the Internet. XML has become a very popular method for storing data and the most popular method for transmitting data between all sorts of systems and applications. The reason being, where HTML was designed to display information, XML was designed to manage it.
“XML: Visual QuickStart Guide, 2nd Edition” is divided into seven parts. Each part contains one or more chapters with step-by-step instructions that explain how to perform XML-related tasks. Wherever possible, examples of the concepts being discussed are displayed, and the parts of the examples on which to focus are highlighted.
The order of the book is intentionally designed to be an introduction to the fundamentals of XML, followed by discussions of related XML technologies.
Books with free ebook downloads available Free XML: Visual QuickStart Guide
- File Size: 10723 KB
- Print Length: 288 pages
- Simultaneous Device Usage: Up to 5 simultaneous devices, per publisher limits
- Publisher: Peachpit Press; 2 edition (April 26, 2010)
- Sold by: Amazon Digital Services, Inc.
- Language: English
- ASIN: B003HE5D7Q
- Text-to-Speech: Enabled
X-Ray:
- Lending: Not Enabled
- Amazon Best Sellers Rank: #88,159 Paid in Kindle Store (See Top 100 Paid in Kindle Store)
- #1
in Books > Computers & Technology > Programming > Languages & Tools > XML
- #1
in Books > Computers & Technology > Programming > Languages & Tools > XML
Free XML: Visual QuickStart Guide
XML (eXtensible Markup Language) has become the medium to move data in efficient and predictable ways. Derived from a similar markup language, SGML (Standard Generalized Markup Language), XML is structured, but not as highly as SGML. Structure is what itís all about. The very loosely structured HTML (HyperText Markup Language) is also derived from SGML. Even the XML markup looks amazingly like HTML, except, as the author explains, HTML defines how information will look, while XML defines how the information is formatted.
Here is a portion of an XML file:
<?xml version="1.0"?>
<my_siblings>
<sibling>
<name>Norm</name>
<gender>Male</gender>
<age>65</age>
</sibling>
<sibling>
<name>Nancy</name>
<gender>Female</gender>
<age>52</age>
</sibling>
<sibling>
<name>Guy</name>
<gender>Male</gender>
<age>48</age>
</sibling>
</my_siblings>\
If you analyze the code sample above, you should be able to see that there are three siblings defined. Each siblingís information is contained, or wrapped, between the <sibling> and </sibling> tags, and that the information on those three siblings is wrapped between the <my_siblings> and </my_siblings> tags. Taking this one step further, you can think of these sibling "chunks" as parts of a database: the content between the <sibling> and </sibling> tags would be defined as a record, while the <name></name>, <gender></gender>, and <age></age> tags define fields within a record. This content can then be transformed into content in a different format and reused in many different ways.
Download Link 1 -
Download Link 2