XML data populated from oracle not displayed in html table

Ryosuke

New Member
I've generated XML from oracle:\[code\]select dbms_xmlquery.getxml('select * from tbl_nm') from dual<?xml version="1.0" encoding="ISO-8859-1"?><ROWSET> <ROW num="1"> <NAME>admin</NAME> <PASSWORD>a</PASSWORD> </ROW> <ROW num="2"> <NAME>user</NAME> <PASSWORD>u</PASSWORD> </ROW></ROWSET>\[/code\]i tried to get this xml data in html table but the table was not displayed. When I changed the ROW tag into any other tag say CD the table was displayed. Why is it so???
 
Back
Top