Re: new in CGI::Session::Driver::postgredsql nonexisting



IDK wrote:

With strict I only get loads of:
login: Global symbol "$s" requires explicit package name at ./login
line 25.

$s = sqlQuerry("SELECT id, pass FROM zerus.players WHERE
name='$user'")

Put "my" in front of the first time where the variable $s is used.
my $s = sqlQuerry...
.