need XML help

shan_n95

Member
Feb 10, 2008
10,228
81
0
guys i need to know how to create a table using xml codes.lets asume we have a table named student and there are 3 fields called name age and school.so what are the xml codes for this table.could you please help me as i need this quickly for ma assignmnt.tnk u guyz
 

nismok

Well-known member
  • Jun 27, 2008
    9,391
    673
    113
    Try this ...

    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <dataroot>
    <STUDENT>
    <NAME>Shan</NAME>
    <AGE>22</AGE>
    <SCHOOL>Elakiri</SCHOOL>
    </STUDENT>
    </dataroot>
     
    • Like
    Reactions: shan_n95