-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathch8p3XML.php
More file actions
36 lines (33 loc) · 734 Bytes
/
ch8p3XML.php
File metadata and controls
36 lines (33 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
include_once('generalIncludes.php');
echo '<input id="chapter" type="hidden" value="8">';
echo '<h2>Chapter 8 Data Formats and Types - Paragraph paragraph Extensible Markup Language</h2>';
echo "NB. the file 'xml\library.xml' is in the root of this project.<br/>";
echo '<h3></h3>';
showXMLdoc(<<<'CODE'
<?xml version="1.0"?>
<message>Hello, World!</message>
CODE
);
echo '<h3></h3>';
showXMLdoc(<<<'CODE'
<?xml version="1.0"?>
<!DOCTYPE message SYSTEM "message.dtd">
<message>Hello, World!</message>
CODE
);
echo '<h3></h3>' ;
echo '';
showcode(<<<'CODE'
<?xml version="1.0"?>
<!DOCTYPE message [
<!ELEMENT message (#PCDATA)>
]>
<message>Hello, World!</message>
CODE
);
echo '<h2></h2>';
echo '';
showcode(<<<'CODE'
CODE
);