in reply to html->perl->c->perl...... work dang it
print " <HR>\n"; print " <TABLE border=0 width=100% bgcolor=\"\#005533\">\n"; print " <TR><TD>\n"; print "$username\n";
you can write
Instead of END, it can be any word and that word must appear alone to end the here document.print <<END; <HR> <TABLE border=0 width=100% bgcolor="#005533"> <TR><TD> $username END
|
|---|