On Thu, 2006-08-31 at 11:09 -0700, chen li wrote: > Hi guys, > > I have a CGI script to process some data from the > visitors. The input data takes this format(row x > column): > 1 2 4 5 6 7 > 100 90 50 30 20 0 > > After processing I want to print out the result in the > same format(row x column). But when I ran my script I > only get a row only: > > 1 2 4 5 6 7 100 90 50 30 20 0 > > It looks like all lines are changed into a string > only. Can anyone there give me a hand?
Browsers ignore most white space when rendering HTML. Since you're trying to present tabular data, you should put in inside a table. That should fix your formatting problems. HTH -- Joshua Colson <[EMAIL PROTECTED]> -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>