Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

XML... whats its purpose?

  • 22-10-2010 2:22pm
    #1
    Registered Users, Registered Users 2 Posts: 137 ✭✭


    Just trying to teach myself some XML but i find it extremely confusing, i know it's mostly HTML tags,but why not use HTML which seems a lot easier??


Comments

  • Registered Users, Registered Users 2 Posts: 24 xonet


    Purpose of XML is to store date in a structured format so that it can be parsed and manipulated programatically


  • Registered Users, Registered Users 2 Posts: 180 ✭✭Ste_D


    Its just structured data. It makes it easy to pass data around between applications. Its also very easy to use x-path to quickly extract a piece of information.


  • Closed Accounts Posts: 1,275 ✭✭✭Chaz


    Its also used extensively in the OSS / BSS worlds via North Bound Interfaces etc.


  • Closed Accounts Posts: 43 wapnote


    XML is just a way of storing data. By using tags and sub tags you can give your data structure. Using parsers you can read data from xml files straight into your code easily.

    HTML combines data and formatting information.

    XML just contains data. You can use XSLT stylesheets if you want to display XML data in a web page. This allows separation between the data and the formatting.


Advertisement