if that file has extra info that helps the script run, then use:
require "file.txt";
and call the contents of the file like it was part of the sub your in.
or if you just want to display the contents of the text file, use something like:
open (FILE, "file.txt") or die "cannot open file.txt: $!";
$text = ;
close(FILE);
print "$text";
Note to Borg(if you ever read this): perl ubb code tags don't work well if you have two instances in the same post. prints the last instance in all the instances.
[ July 05, 2001 11:57 PM: Message edited by: The Donut ]