in reply to Re: Parsing Variables
in thread Parsing Variables

You could also condense the separate print lines by using FORMAT commands (although it is a bit long and somewhat involved) or you could do:

print qq/ Content-type: text/html <html><head></head> <body> <table> <tr>/; foreach (<@inputlines>) { print "<td>$_\n</td>"; } print qq/ </tr> </table> </body></html>/;
Of course there is always more than one way to do it :-)

"Ex libris un peut de tout"