in reply to Re: Registration Error
in thread Registration Error
If it helps, here's code I used to debug your script, paste it in after the ties# if ($dbm1{"$accountAD"} # && $dbm1{"$accountID"} =~ /^$accountAD$/) { # key values reversed if ($dbm1{"$accountAD"} && $dbm1{"$accountAD"} =~ /^$accountID$/) { # corrected
poj# debug sub showdata { my ($head,$data) = @_; print qq(<table border=1><tr><td> key </td><td> $head </td></tr>\n); foreach (sort keys %$data){ print qq(<tr><td> $_ </td><td> $$data{$_} </td></tr>\n); } print q(</table>); } showdata("Unverified",\%dbm1); showdata("Verified",\%dbm2);
# $dbm1{$form{'usermail'}} = "$accountID"; $dbm1{"$accountID"} = $form{'usermail'};
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Registration Error
by sulfericacid (Deacon) on Mar 08, 2003 at 18:38 UTC | |
by poj (Abbot) on Mar 08, 2003 at 18:52 UTC | |
by sulfericacid (Deacon) on Mar 08, 2003 at 18:59 UTC | |
by poj (Abbot) on Mar 08, 2003 at 19:27 UTC | |
by sulfericacid (Deacon) on Mar 08, 2003 at 19:43 UTC |