Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Rendering HTML tables 1

Status
Not open for further replies.

AtomicChip

Programmer
Joined
May 15, 2001
Messages
622
Location
CA
I'm populating an array with data from an XML file. The extraction part is working fine, but I can't seem to get the text rendering the way that I'd like to.

There are two fields in the xml file: Team Name and Coach. I added a dynamic text field to the form and enabled HTML. Can someone tell me why this won't render in the dynamic text field?:
Code:
<table border="0" cellpadding="3" cellspacing="0" width="100%">
<tr><td>Name</td><td>Coach</td></tr>
<tr><td>Foo's 1</td><td>Foo 1</td></tr>
<tr><td>Foo's 2</td><td>Foo 2</td></tr>
</table>

-----------------------------------------------
"The night sky over the planet Krikkit is the least interesting sight in the entire universe."
-Hitch Hiker's Guide To The Galaxy
 
Thanks for the reply. Event though that's not the answer I was hoping for (funny how often that happens ;)), it is correct.

Star for you :)

-----------------------------------------------
"The night sky over the planet Krikkit is the least interesting sight in the entire universe."
-Hitch Hiker's Guide To The Galaxy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top