spewn
Programmer
- May 7, 2001
- 1,034
here's my code:
this works great, but i need each entry to be on its own line...any ideas?
it needs to look like this, when opened with a text editor.
entry1
entry2
entry3
Any ideas?
- g
Code:
$cfile = "u/list.txt";
open (COUNTER, "$cfile");
$count = <COUNTER>;
close (COUNTER);
$count = $count.'one line';
open (COUNTER, ">$cfile");
print COUNTER ("$count");
close (COUNTER);
this works great, but i need each entry to be on its own line...any ideas?
it needs to look like this, when opened with a text editor.
entry1
entry2
entry3
Any ideas?
- g