in reply to My perl interpreter won't even look at it. It's that bad.
A few issues.
This (in line 176):
return( &generate_form_entry_error_string( "A-Z a-z 0-9" );
Should be:
return( &generate_form_entry_error_string( "A-Z a-z 0-9" ) );
This error is repeated many times. You also have an elseif instead of an elsif.
Last comment: with this error being duplicated so many times, I suspect that you should look into how you can refactor this code.
Cheers,
Ovid
New address of my CGI Course.
Silence is Evil
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: My perl interpreter won't even look at it. It's that bad.
by strider corinth (Friar) on Nov 16, 2002 at 03:40 UTC |