0% found this document useful (0 votes)
33 views

example To Organize Emloyee Data

The document contains two XML files, one organizing employee data including employee ID, name, date of hire, department, and salary for 3 employees. The other organizes product data including product ID, name, description, price, and quantity for 3 products - a Samsung phone, iPhone, and OPPO phone.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
33 views

example To Organize Emloyee Data

The document contains two XML files, one organizing employee data including employee ID, name, date of hire, department, and salary for 3 employees. The other organizes product data including product ID, name, description, price, and quantity for 3 products - a Samsung phone, iPhone, and OPPO phone.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

//Example To Organize Emloyee Data

<?xml version="1.0" encoding="UTF-8" ?>

<emps>

<emp>

<eid> 1001 </eid>

<ename> Varsha</ename>

<doj> 12/10/2016 </doj>

<dept> Developer </dept>

<sal> 85000 </sal>

</emp>

<emp>

<eid> 1002</eid>

<ename>Harsha</ename>

<doj> 1/5/2017</doj>

<dept> Designer </dept>

<sal> 65000 </sal>

</emp>

<emp>

<eid> 1092</eid>

<ename>Teja</ename>

<doj> 11/05/2015</doj>

<dept> Tester </dept>

<sal> 55000 </sal>

</emp>

</emps>
//Example To Organize Product Information

<?xml version="1.0" encoding="UTF-8" ?>

<PRODUCTS>

<PRODUCT>

<PID> S123 </PID>

<PNAME>SAMSUNG A20 </PNAME>

<DESC>This has High Quality Display </DESC>

<PRICE>19000</PRICE>

<QTY> 10 </QTY>

</PRODUCT>

<PRODUCT>

<PID> S516 </PID>

<PNAME>iPhone8</PNAME>

<DESC>This will do all perfect</DESC>

<PRICE>125000</PRICE>

<QTY> 4 </QTY>

</PRODUCT>

<PRODUCT>

<PID> S778 </PID>

<PNAME>OPPO</PNAME>

<DESC>Selfie Camera</DESC>

<PRICE>25000</PRICE>

<QTY> 8 </QTY>

</PRODUCT>

</PRODUCTS>

You might also like