http://www.perlmonks.org?node_id=425891


in reply to CGI with mysql

use CGI; use DBI; ## ... $dbh=DBI->connect($dsn,$user,$password) or die $DBI::errstr; ## ...
You must look into the documentation of DBI.

pelagic