> > $m = 'text/plain';
> > $m = $_[1] unless(!$_[1]);
> > 
> > Somehting like
> > 
> > $m = $_[1] unless(!$_[1]) :$m = 'text/plain';
> > 
> > But I can get it right, any assistance would be much appreciated.
> > 
> > Thanks
> > 
> > Dan
> > 
> 
>  $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 ??

If not thanks for the help!!

DMuey



> 
> 

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to