A
Adrienne Boswell
in message
: Roland Hall wrote:
: > There is no leading , (comma) so another <td> had to be inserted.
: >
: > prt("<td>" & replace(arr(i),",","<td>"))
:
: I would go even further and reach for HTML completeness:
:
: prt("<td>" & replace(arr(i),",","</td><td>") & "</td>")
HTML completeness? I thought ending tags were no longer required?
However, wouldn't it then be:
prt("<td>" & replace(arr(i),",","</td><td>") & "</td></tr>")
Roland
With XHTML, all elements must be closed and lowercase, even IMG and BR,
eg: <img src="some.png" alt="" /> or <br />
Even with HTML you do a lot better to use closing tags, easier to debug,
etc.