On 9/4/06, [EMAIL PROTECTED] <[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]
For additional commands, e-mail: [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.

Reply via email to