in reply to Problem printing contents of file

The file exists? The file contains data..? Open like this:
open(FILE, '<', '/frame.txt') or die $!; while(<FILE>) { print $_, "\n"; } close(FILE);