in reply to Is there any INCLUDE equivalent in Perl ?

Not that I advocate this way of accomplishing the task (I personally despise global variables being set in an external file), but useing a config file can be as simple as this:
# filename: config $var1 = "First value"; $var2 = "Second value";
...and then in your script:
use config; print "$var1 and $var2";

Hot Pastrami