in reply to Re^2: how to put XML string in table cell
in thread how to put XML string in table cell

No, they are not coming right. <Soap-ENV: is not a valid HTML tag.

Replies are listed 'Best First'.
Re^4: how to put XML string in table cell
by bimleshsharma (Beadle) on Jan 23, 2014 at 05:00 UTC

    ok, i found the way to do that. Just we need to encode the string as below ...

    use HTML::Entities; my $x= encode_entities( $x );

    and use below in td section

    <table><tr><td>test</td><td>$x</td></tr></table>