JAYBEE D. MARANAN_MODULE 6
What is XML ? ML (Extensible Markup Language) is a markup language similar to HTML , but without predefined tags to use. Instead, you define your own tags designed specifically for your needs. This is a powerful way to store data in a format that can be stored, searched, and shared. Most importantly, since the fundamental format of XML is standardized, if you share or transmit XML across systems or platforms, either locally or over the internet, the recipient can still parse the data due to the standardized XML syntax. XML VS. HTML: WHAT’S THE DIFFERENCE? XML is a markup language used to store, transport and exchange data. HTML is a markup language used to create web pages. XML focuses on storing data. HTML displays data. XML uses tags to describe the data, but the tags are defined by the user. HTML has predefined tags. JSON JSON (JavaScript Object Notation) is a lightweight format for storing and transmitting data. It’s commonly used in web applications f...