how to create a table
xml table create coding
Collapse
X
-
Tags: None
-
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
This is understood by a browser to be a table with 3 rows and two columns.Code:<table> <tr> <td>...</td> <td>...</td> </tr> <tr> <td>...</td> <td>...</td> </tr> <tr> <td>...</td> <td>...</td> </tr> </table>Comment
Comment