in reply to CGI aligning
Your script is printing <br> because you explicitly told it to with these two lines:
$tags =~ s/</</; $tags =~ s/>/>/;
And then, right after that you tried to remove the breaks, but s/<br>// isn't going to match anything, because you just removed all the < and > characters from your string.
| We're not surrounded, we're in a target-rich environment! |
|---|
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: CGI aligning
by sulfericacid (Deacon) on Apr 03, 2003 at 06:34 UTC |