David, i used the Charles's tips (with ' delimiter) and now it works.
Thanks all.
Adilson
David Van Ginneken wrote:
On 9/4/06, [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>*
<[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote:
Hi All
I need print HTML codes with perl:
<table width="95%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Tste</td>
<td>Tste</td>
</tr>
<tr>
<td>Tste</td>
<td>Tste</td>
</tr>
</table>
I tried with this way, but not work:
print MAPA "<table width="95%" border="0" cellspacing="0"
cellpadding="0">";
print MAPA "<tr>\n";
print MAPA "<td>teste</td>\n";
print MAPA "<td>teste</td>\n";
print MAPA "</tr>\n";
print MAPA "<tr>\n";
print MAPA "<td>teste</td>\n";
print MAPA "<td>teste</td>\n";
print MAPA "</tr>\n";
print MAPA "</table>\n";
thx
Adilson
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>
<http://learn.perl.org/> <http://learn.perl.org/first-response>
What doesn't work about it? I'm guessing you are writing this to a
file. Can you show us more of the perl script, specifically the part
that sets up the MAPA filehandle.