Hybride Posted June 20, 2009 Share Posted June 20, 2009 This is the one thing that's been really messing me over: am learning Perl currently, and I have yet to figure out how to put a separate file with database info, and then "require/do" it in. For example, the include file (ie: db.pl) : my $database = "database"; my $dbuser = "user"; my $dbpass = "password"; my $hostname = "localhost"; and the main file (ie: file.pl): #!/usr/bin/perl -w use strict; use warnings; use DBI; use DBD::mysql; require "db.pl" or die("Can't require db.pl"); my $dbh = DBI->connect("DBI:mysql:database=$database;host=$hostname",$dbuser,$dbpass) || die "\nDB connection error!\n" or how does that goes? Put it in a subroutine, maybe? (On that note, anyone also have good links to learning Perl subroutines?) Quote Link to comment https://forums.phpfreaks.com/topic/162980-solved-separate-file-for-perl-database-info/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.