CGI::SessionM is a Perl module that provides sessions support inside CGI scripts.
IP-address of database server can be used as server name, e.g. 127.0.0.1. For non-standard port just add ";port=1234" after server name (1234 is example of port number). So the complete string will be -host=>"127.0.0.1;port=1234"
Authorize method takes "true" (non-0) and "false" (0) values as second parameter. For "true" value session will be created without error generation. Elsewise session will be created with error #1. See the errors description in ERRORS chapter.
SYNOPSIS
#If your module SessionM.pm is located in another directory than @ISA array contains:
#use lib 'path to your lib';
use CGI::SessionM 2.00;
-- or --
# If your module SessionM.pm is located in another directory than @ISA array contains:
unshift(@INC,"path to your lib");
require CGI::SessionM;
Requirements:
· Perl