in reply to Re^3: how to put XML string in table cell
in thread how to put XML string in table cell
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>
|
|---|