Thanks for pointing that out. I did some quick reading about interpolating perl variables into SQL statements @ http://search.cpan.org/~markstos/SQL-Interpolate-0.40/lib/SQL/Interpolate.pm and put...
I've made some modifications. Successful input is supposed to be sent to the mysql database using the process_form subroutine. Do you see an issue there?
I think I already caught one minor error. In the sub "validate_form" I'm using a variable named $query but below when I create a new CGI object I named it $q. These need to match.
I was given a project to create a simple HTML registration form in which the data is validated using Javascript. It is then validated on the server side using Perl before being sent to a mySQL...