Is there a way to concatenate output to a file and use continuation characters to make my vode mre readable?? Right now I have this:
print "Content-type: text/plain\n\n ";
print OUTPUT "$contents{'firstname'}\n";
print OUTPUT "$contents{'lastname'}\n";
which puts everything on a separate line but I want everything on one line (there's a lot more field values to output). I was wondering if there is anything like:
print "Content-type: text/plain\n\n ";
print OUTPUT "$contents{'firstname'} & _
print OUTPUT "$contents{'lastname'}\n";
or something similar
thanks
RHNewfie There are 3 Types of People in the World
Those Born to Think Logically
Those that can Learn to Think Logically
Those that Shouldn't Try
print "Content-type: text/plain\n\n ";
print OUTPUT "$contents{'firstname'}\n";
print OUTPUT "$contents{'lastname'}\n";
which puts everything on a separate line but I want everything on one line (there's a lot more field values to output). I was wondering if there is anything like:
print "Content-type: text/plain\n\n ";
print OUTPUT "$contents{'firstname'} & _
print OUTPUT "$contents{'lastname'}\n";
or something similar
thanks
RHNewfie There are 3 Types of People in the World
Those Born to Think Logically
Those that can Learn to Think Logically
Those that Shouldn't Try