xml table create coding

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kirubhalakshmi
    New Member
    • Jan 2014
    • 1

    xml table create coding

    how to create a table
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    the concept of a table does not exist in XML.

    Comment

    • Nepomuk
      Recognized Expert Specialist
      • Aug 2007
      • 3111

      #3
      Since your XML file is likely to be interpreted by something, you can define a table in a way that that interpreter will understand. XHTML for example (which is based on XML) uses the notation
      Code:
      <table>
          <tr>
              <td>...</td>
              <td>...</td>
          </tr>
          <tr>
              <td>...</td>
              <td>...</td>
          </tr>
          <tr>
              <td>...</td>
              <td>...</td>
          </tr>
      </table>
      This is understood by a browser to be a table with 3 rows and two columns.

      Comment

      Working...