in reply to Netscape does not process $ARGV

Use <code></code> tags for posting code.

I normally wouldn't bother, but since i'm bored, here's the code somewhat cleaned up:

for example if:
$salesperson would be John Doe, and $MLS would be 12345
$display .= "<a href="$ENV{SCRIPT_NAME}?mail&nmsg&".$salesperson."&Lis +ting$MLS\">$salesperson</a>\n"; ### process input: $salesperson = $ARGV[2]; $salesperson =~ s/%20/ /g; $salesperson =~ s/\+/ /g $subject = $ARGV[3]; $subject =~ s/%20/ /g; $subject =~ s/\+/ /g $display .= "<b>To: $salesperson<br></b>\n"; $display .= "<b>Subject: $subject<br></b>\n";
As display in MSIE 5.0:
To: John Doe Subject: Listing 12345

As displayed in NN 4.7:
To: John Subject:

To gain knowledge one must study,
Then study this, this and this.

To gain wisdom one must observe.
Then do so.

-- ar0n | Just Another Perl Joe