Introduction to Web programming

Slides:



Advertisements
Similar presentations
What is XML? XML stands for EXtensible Markup Language XML is a markup language much like HTML XML was designed to carry data, not to display data XML.
Advertisements

Lecture # 11 JavaScript Graphics. Scalable Vector Graphics (SVG) Scalable Vector Graphics (SVG), as the name implies, are - scalable (without pixelation):
SPECIAL TOPIC XML. Introducing XML XML (eXtensible Markup Language) ◦A language used to create structured documents XML vs HTML ◦XML is designed to transport.
Sistemi basati su conoscenza XML Prof. M.T. PAZIENZA a.a
XML Primer. 2 History: SGML vs. HTML vs. XML SGML (1960) XML(1996) HTML(1990) XHTML(2000)
Introduction to XML: Yong Choi CSU Bakersfield.
The Internet Has Grown 1971 > Google
Introduction to XML Chien-Chung Shen CIS, UD
XML Android Club Agenda XML JSON XML eXtensible Markup Language Used for: data transfer PHP -> Java.
Semi-Structured Data Tutorial # 1- Introduction to XML.
XML introduction to Ahmed I. Deeb Dr. Anwar Mousa  presenter  instructor University Of Palestine-2009.
CREATED BY ChanoknanChinnanon PanissaraUsanachote
1Computer Sciences Department Princess Nourah bint Abdulrahman University.
HTML Structure & syntax
Introduction to HTML. HTML Hyper Text Markup Language Page Title My First Heading My first paragraph. Page Title My First Heading My first paragraph.
XHTML,XML M.Abdullah Mrian. What is the XHTML Why XHTML ?
How the Web Works Digital Histories Workshop Adam Crymble.
Presentation Topic: XML and ASP Presented by Yanzhi Zhang.
XML eXtensible Markup Language. Topics  What is XML  An XML example  Why is XML important  XML introduction  XML applications  XML support CSEB.
CIS 275—Web App Dev I XML. 2 Introduction to XMLXML XML stands for ________________________. HTML was designed to display data. XML was designed to _________.
HTML Basics Let’s Make a Web Page. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a.
WEB APPLICATION DEVELOPMENT For More visit:
XML Introduction. What is XML? XML stands for eXtensible Markup Language XML stands for eXtensible Markup Language XML is a markup language much like.
What it is and how it works
XML Introduction. Markup Language A markup language must specify What markup is allowed What markup is required How markup is to be distinguished from.
XML Basics A brief introduction to XML in general 1XML Basics.
Jennifer Widom XML Data Introduction, Well-formed XML.
EXtensible Markup Language XML Question: What is the most common use of XML Answer: As a buzzword to spice up a resume.
Web Terminology Intro to Web. North Lake College 2 by Sean Griffin HTML vs. XHTML HTML: Hypertext Markup Language XHTML: eXtensible Hypertext Markup Language.
Representing data with XML SE-2030 Dr. Mark L. Hornick 1.
XML, SCHEMAS, DTD The primer Brendan Knight. XML  XML stands for eXtensible Markup Language.  XML is designed to transport and store data.  Contains.
ASHIMA KALRA  INTRODUCTION OF XML INTRODUCTION OF XML  XML FEATURES XML FEATURES  XML SYNTAX XML SYNTAX  XML ELEMENTS XML ELEMENTS  XML ATTRIBUTES.
HTML A brief introduction HTML1. HTML, what is? HTML is a markup language for describing web documents (web pages). HTML stands for Hyper Text Markup.
XML. HTML Before you continue you should have a basic understanding of the following: HTML HTML was designed to display data and to focus on how data.
AJAX. Ajax  $.get  $.post  $.getJSON  $.ajax  json and xml  Looping over data results, success and error callbacks.
University of South Asia Course Name: Web Application Prepared By: Md Rezaul Huda Reza
Invitation to Computer Science 6 th Edition Chapter 10 The Tower of Babel.
Dave Salinas. What is XML? XML stands for eXtensible Markup Language Markup language, like HTML HTML was designed to display data, whereas XML was designed.
XML Introduction to XML Extensible Markup Language.
XML Notes taken from w3schools. What is XML? XML stands for EXtensible Markup Language. XML was designed to store and transport data. XML was designed.
Extensible Markup Language (XML) Pat Morin COMP 2405.
XML intro. What is XML? XML stands for EXtensible Markup Language XML is a markup language much like HTML XML was designed to carry data, not to display.
Basic HTML Introduction to HTML.
XML to Relational Database Mapping
Web Basics: HTML/CSS/JavaScript What are they?
Introduction to Web programming
XML University Of Benghazi IT Faculty Computer Networks and Communications Department Introduction to Internet Programming(CN281)
XML Parsers.
XML and XPath.
Introduction to HTML.
Creating an XML Document
Key concepts of Computing
Introduction to Web programming
2017, Fall Pusan National University Ki-Joune Li
EXtensible Markup Language(XML)
By HITESHWAR KUMAR AZAD Ph.D Scholar
Prepared for Md. Zakir Hossain Lecturer, CSE, DUET Prepared by Miton Chandra Datta
XML Data Introduction, Well-formed XML.
Session I Chapter 1 – Writing XML
Session I Chapter 1 – Writing XML
HTML HTML is a language for describing web pages.
Javascript & jQuery XML.
XML: Introduction to XML
Mozafar Bag-Mohammadi
What is XML?.
XML: Introduction to XML
Pertemuan 1 Desain web Pertemuan 1
Class 4: Building Interactive Web Pages
Web Client Side Technologies Raneem Qaddoura
Introduction to Web programming
Presentation transcript:

Introduction to Web programming 0731213

What is XML? XML stands for eXtensible Markup Language XML is a markup language much like HTML XML was designed to store and transport data XML was designed to be self-descriptive

How Can XML be Used? XML Separates Data from Presentation XML does not carry any information about how to be displayed. The same XML data can be used in many different presentation scenarios. Because of this, with XML, there is a full separation between data and presentation. XML is Often a Complement to HTML In many HTML applications, XML is used to store or transport data, while HTML is used to format and display the same data.

XML Elements An XML element is everything from (including) the element's start tag to (including) the element's end tag. An element can contain: text attributes other elements or a mix of the above <book category="children">     <title>Harry Potter</title>     <author>J K. Rowling</author>     <year>2005</year>     <price>29.99</price>   </book>

XML Attributes XML elements can have attributes, just like HTML. Attributes are designed to contain data related to a specific element XML Attributes Must be Quoted <person gender="female">

XML Example <?xml version="1.0" encoding="UTF-8"?> <breakfast_menu> <food>     <name>Belgian Waffles</name>     <price>$5.95</price>     <description>    Two of our famous Belgian Waffles with plenty of real maple syrup    </description>     <calories>650</calories> </food> <food>     <name>Strawberry Belgian Waffles</name>     <price>$7.95</price>     <description>     Light Belgian waffles covered with strawberries and whipped cream     </description>     <calories>900</calories> </food> </breakfast_menu>

XML Example Name Price Description Calories Belgian Waffles 5.95 Two of our famous Belgian Waffles with plenty of real maple syrup 650 Strawberry Belgian Waffles 7.95 Light Belgian waffles covered with strawberries and whipped cream 900

References https://www.w3schools.com/ Robin Nixon, Learning PHP, MySQL, JavaScript, and CSS, 2013 Mike McGrath, PHP & My SQL in easy steps, 2012.

The End