-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustomers1.xml
More file actions
41 lines (41 loc) · 790 Bytes
/
customers1.xml
File metadata and controls
41 lines (41 loc) · 790 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
36
37
38
39
40
41
<?xml version = "1.0"?>
<DOCUMENT>
<CUSTOMER TYPE="good">
<NAME>
<LAST_NAME>Thomson</LAST_NAME>
<FIRST_NAME>Susan</FIRST_NAME>
</NAME>
<DATE>September 1, 2001</DATE>
<ORDERS>
<ITEM>
<PRODUCT>Video tape</PRODUCT>
<NUMBER>5</NUMBER>
<PRICE>$1.25</PRICE>
</ITEM>
<ITEM>
<PRODUCT>Shovel</PRODUCT>
<NUMBER>2</NUMBER>
<PRICE>$4.98</PRICE>
</ITEM>
</ORDERS>
</CUSTOMER>
<CUSTOMER TYPE="poor">
<NAME>
<LAST_NAME>Smithson</LAST_NAME>
<FIRST_NAME>Nancy</FIRST_NAME>
</NAME>
<DATE>September 2, 2001</DATE>
<ORDERS>
<ITEM>
<PRODUCT>Ribbon</PRODUCT>
<NUMBER>12</NUMBER>
<PRICE>$2.95</PRICE>
</ITEM>
<ITEM>
<PRODUCT>Goldfish</PRODUCT>
<NUMBER>6</NUMBER>
<PRICE>$1.50</PRICE>
</ITEM>
</ORDERS>
</CUSTOMER>
</DOCUMENT>