Tables in XML ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sid0404
    New Member
    • Jul 2008
    • 16

    Tables in XML ?

    Hi

    Could any one give example of how to create table s in XML ?

    Clarification appreciated.
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    Tables in XML ?

    What kind of tables? as long as it is xml conform you can do tables in xml. e.g.

    Code:
    <?xml version="1.0" encoding="iso-8859-1" ?>
    <table>
      <row>
        <cell/>
        <cell>cell content</cell>
      </row>
      <row>
        <cell>cell content</cell>
        <cell>cell content</cell>
      </row>
    </table>
    but you can use xhtml style tables, too.

    regards

    Comment

    • sid0404
      New Member
      • Jul 2008
      • 16

      #3
      Its done via XSLT in XML.

      Just got the solutions.

      -Sid

      Comment

      Working...