Re: Showing errors with user input

2009-12-09 Thread Adam Jimerson
On Dec 7, 12:43 pm, g...@lazymountain.com (Greg Jetter) wrote: > On Sunday 06 December 2009 10:24:31 am Adam Jimerson wrote: > > > > > > > I am working on a registration page and there for want it to show the > > user errors it has found with their input.  I have two subroutines in > > my code, the

Re: Showing errors with user input

2009-12-09 Thread Adam Jimerson
Greg Jetter wrote: > > You are trying to use a local scoped var as a global , line 93 $GoodMail > is > used out of its scope , > > if ( $user[5] =~ /^([...@\w.]+)$/ ) { > $user[5] = $1; > eval { > my $GoodMail = Email::Valid->address( -address => "$user[5]", - mxcheck => > 1); > return; > } >

Re: Showing errors with user input

2009-12-09 Thread Greg Jetter
On Tuesday 08 December 2009 9:50:57 am Adam Jimerson wrote: > On Dec 7, 12:43 pm, g...@lazymountain.com (Greg Jetter) wrote: > > On Sunday 06 December 2009 10:24:31 am Adam Jimerson wrote: > > > I am working on a registration page and there for want it to show the > > > user errors it has found wit