hi,
i wanted to know how to comment multiple lines in a perl program
say in this piece of code.
for ($i=0; $i<5; $i++)
{
print "<tr>
<td width=10%>
<input type=\"text\" name=\"c\" size=9 style=\"border: 0px"></td>
<td width=10%> <input type=\"text\" name=\"CP_CQ_id\" size=9 style=\"border: 0px;\"></td>
</tr>
</table>
";
how do i comment this whole piece of code...
is it the usual way by keeping '#' in front of eavery line...or there is any other way
in C we use something like /*... */, is there something similar in perl
Any kind of help is appriciated
Thanks
Ravi