This script works fine when CGI is not loaded, and when CGI is loaded the $data_source string does not build correctly. Any help would be greatly appreciated!!!
-john
use DBI;
use CGI qw
standard :html3);
use Term::ReadKey;
# Request IP address of Server
print " \n";
print "What is the IP address of the server? ";
$IPadd = <STDIN>;
chomp ($IPadd);
print " \n";
# Request password and mask entry
print 'Please Enter sa Password: ';
ReadMode 'noecho';
$password = <STDIN>;
chomp ($password);
ReadMode 'normal';
print " \n";
$data_source = "driver={SQL Server};Server={$IPadd};database={UnityDb};UID={sa};PWD={$password}";
print "$data_source";
-john
use DBI;
use CGI qw

use Term::ReadKey;
# Request IP address of Server
print " \n";
print "What is the IP address of the server? ";
$IPadd = <STDIN>;
chomp ($IPadd);
print " \n";
# Request password and mask entry
print 'Please Enter sa Password: ';
ReadMode 'noecho';
$password = <STDIN>;
chomp ($password);
ReadMode 'normal';
print " \n";
$data_source = "driver={SQL Server};Server={$IPadd};database={UnityDb};UID={sa};PWD={$password}";
print "$data_source";