in reply to Re: Re: Empty Fields
in thread Empty Fields

It looks like you need to add next unless $value; to :

foreach $key (@ordnames) { $value = $FORM{$key}; next unless $value; # added this line # get rid of ^M and stuff $value =~ s/\x0d\x0a/ /g; $value =~ s/[\x0a\x0d]/ /g; unless ( $key eq "recipient" || $key eq "recipients" || $key eq "subject" || $key eq "redirect_to" || $key eq "validate" || $key eq "email_field" || $key eq "error_head" || $key eq "error_foot" ) { $outmail .= qq|$key:\t\t$value\n|; # add each key and a tab to datastring $outdata .= qq|$value\t|; } }

HTH,
Charles K. Clarkson

Replies are listed 'Best First'.
Re: Re: Re: Re: Empty Fields
by Anonymous Monk on Oct 31, 2001 at 20:22 UTC
    Thanks Charles! Hopefully this will work :)
    -D