Dan Muey wrote: > > $m = $_[1] ? $_[1] : 'text/plain'; > Excellent!! I also received the suggestion > my $m = $_[1] || 'text/plain'; > > Any body have any pros/cons about which would be more > efficient/better ??
I second Rob H's version - the second one - as being more Perlish. It also avoids repeating $_[1] and is likely, if anything, to be faster. :) Rob D -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]