EGZLordAngel
New Member
If suppose I have the following XML file in the following format:\[code\]<Employee> <EmpInfo> <Name> 1 </Name> <Age> 23 </Age> <Salary> 23234 </Salary> </EmpInfo> <EmpInfo> <Name> 2 </Name> <Age> 234 </Age> <Salary> 54 </Salary> </EmpInfo> *and so on in the similar fashion*</Employee>\[/code\]Now I want to display the output in a tabular form where the headings of the table is name, age and salary.How do we do that?