|
can you help me on this... i try to print them($count, $last_rec) in two different lines but they get printed in one line if i use this script.....
open (fh,">>","file");
print fh "$count";
print fh "$last_rec";
close(fh);
can you suggest any solution for this...thanks
|