oradba888 has asked for the wisdom of the Perl Monks concerning the following question:
I have a perl script that runs a form submission and sends me an email after user completes the form. Once I get the mail, i see the form fields BUT I do not see the values that the user would enter.
Here is a snippet:
print MAIL "...If Contractor, employed by: $FORM{'Contractor_Employer' +}\n"; print MAIL "...If Visitor, employed by: $FORM{'Visitor_Employer'}\n"; print MAIL "...If Reporting unsafe condition or other safety related i +ssue:\n"; print MAIL "$FORM{'Unsafe_Conditions'}\n"; print MAIL "\n"; print MAIL "IDENTIFICATION DETAILS\n"; print MAIL "...Full Name of Injured: $FORM{'NameInjured'}\n"; print MAIL "...Job Title: $FORM{'JobTitle'}\n"; print MAIL "...Date Hired: $FORM{'DateHired'}-$FORM{'DHMonth'}-$FORM{' +YearHired'} \n"; print MAIL "...Gender: $FORM{'Gender'}\n"; print MAIL "...Manager's Name: $FORM{'Emp_Manager ***************
any ideas?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl script not rendering values
by davido (Cardinal) on Nov 22, 2014 at 07:53 UTC | |
|
Re: Perl script not rendering values
by rnewsham (Curate) on Nov 22, 2014 at 06:44 UTC | |
|
Re: Perl script not rendering values
by AnomalousMonk (Archbishop) on Nov 22, 2014 at 12:07 UTC | |
|
Re: Perl script not rendering values
by LanX (Saint) on Nov 22, 2014 at 12:59 UTC |