Nobody can truly say what is BEST, but the option of the Tk module with a backend of, in your case, DBD::MySQL, is maybe the most "standard" for things like this in Perl. Examples for both can be found all around online.
Here are some for SQL with mySQL and DBD :
http://sql-info.de/mysql/examples/Perl-DBI-examples.html
Here is a good document of examples for perl TK:
http://www.ibm.com/developerworks/aix/library/au-perltkmodule/index.html
As far as opening a browser - a simple system command will do:
my @command = ('start', $url);
system(@command);
^That is for Windows. It looks like you have a decently large application you want to build - opening a browser is just a small part of it - you will want to execute the above when a button is pressed, no doubt.
The last part...submitting data to forms on the web, is a topic called "web crawling"... WWW::Mechanize is a library to look into - Google "perl web crawler" and you are bound to get more good examples.
I found this with a little searching - it looks to be of use to you:
http://www.stratos.me/2009/05/writing-a-simple-web-crawler-in-perl/