M
mti2935
Guest
using a system call with the cat command might be easier...
$cmd="cat /path/to/folder/*";
$r=`$cmd`; // <--these are backticks, not single quotes
print $r;
$cmd="cat /path/to/folder/*";
$r=`$cmd`; // <--these are backticks, not single quotes
print $r;