Results 1 to 2 of 2

Thread: ...XML???

  1. #1

    Thread Starter
    New Member
    Join Date
    Aug 2002
    Location
    lebanon
    Posts
    13

    ...XML???

    hi everybody plz could any body tell me even if briefly what is XML....!?
    i know HTML very well....
    Last edited by Abou_ghazi; Aug 2nd, 2002 at 01:55 AM.

  2. #2
    Addicted Member
    Join Date
    Aug 2000
    Location
    Pennsylvania, USA
    Posts
    168
    XML is just a syntax for storing data. You make up tag names and give tags attributes and/or values. You can then read XML using either a program or with something called an XSL stylesheet and parse the data out using the tags, their attributes, and their values. For example, you could have an XML file that saves address book information. For example:

    Code:
    <xml>
       <addresses>
          <address>
             <name>John Smith</name>
             <street>123 Main St. Apt. 301</street>
             <city>Anytown</city>
             <state>NY</state>
             <zipcode>90210</zipcode>
             <country>USA</country>
          <address>
       </addresses>
    </xml>
    This is a fairly straightforward answer. You may want to look up "XML tutorials" through yahoo or google or some other search engine for more help, or try some books on XML.

    Try here: http://searchwebservices.techtarget....213404,00.html for a more robust definition of XML.
    Wydok

    "It would appear that we have reached the limits of what it is possible to achieve with computer technology, although one should be careful with such statements, as they tend to sound pretty silly in 5 years."

    -John Von Neumann ca. 1949

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width