am trying to open a file but the problem is on the third line (open...)
sub open_file {
local $/ = undef;
($filevar, $filemode, $filename) = @_;
open ($filevar, $filemode . $filename) || die ("Can't open $filename");
}
everytime i run it i get the error: Can't use string ("FILE1") as a symbol ref while "strict refs" in use.
Any help please on how to sort this out.