spoon has asked for the wisdom of the Perl Monks concerning the following question:
Subroutine looks like:$text =$data{"Text"}; #Name of Textbox in form $text =~ s/</</g; $text =~ s/>/>/g;
Can any one help!!!if(-f "$bookfile"){ undef $/; open(FILE, "+<$bookfile") || &debug("Oops, I cannot read the bookfile $bookfile: $!"); if($opsys eq "unix"){flock(FILE, 2);} else{binmode(FILE);} $bookfile_contents = <FILE>; $/ = "tr/\n /";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Text output is on one line
by ph0enix (Friar) on Dec 10, 2002 at 19:45 UTC | |
|
Re: Text output is on one line
by slife (Scribe) on Dec 11, 2002 at 09:01 UTC | |
by Aristotle (Chancellor) on Dec 11, 2002 at 14:21 UTC |