 |
|
Home:
Perl Programming Help:
Beginner:
Re: [MDTech.us_MAN] Need help writing a script that interacts with a MySQL DB:
Edit Log
|
|

wickedxter
User
Oct 2, 2012, 12:41 PM
Views: 10206
|
|
Re: [MDTech.us_MAN] Need help writing a script that interacts with a MySQL DB
|
|
|
thats because they are defined in your HTML and Perl is complaining it cant find them. If they are not coming from the database then.
my $FName = $results->{FName}; my $LName = $results->{LName}; my $AddrLine1 = $results->{AddrLine1}; my $AddrLine2 = $results->{AddrLine2}; my $City = $results->{City}; my $Zip = $results->{Zip}; my $WAddrLine1 = $results->{WAddrLine1}; my $WAddrLine2 = $results->{WAddrLine2}; my $WCity = $results->{WCity}; my $WZip = $results->{WZip}; my $HPhone = $results->{HPhone}; my $MPhone = $results->{MPhone}; my $WPhone = $results->{WPhone}; my $Email = $results->{Email}; #Add these to get rid of the error########## my $Company = $results->{Company}; my $Job_Title = $results->{Job_Title};
(This post was edited by wickedxter on Oct 2, 2012, 12:46 PM)
|
|
|
Edit Log:
|
|
Post edited by wickedxter
(User) on Oct 2, 2012, 12:45 PM
|
|
Post edited by wickedxter
(User) on Oct 2, 2012, 12:46 PM
|
|
|  |