$fp = fopen ('/home/myplace/public_html/Runstats-2007-01-01.txt', 'a');
$fp = fopen ('/home/myplace/public_html/Runstats-2007-01-02.txt', 'a');
$fp = fopen ('/home/myplace/public_html/Runstats-2007-01-03.txt', 'a');
I'd like to stick a changing date into the fopen comand. I've tried some different subs with $xx
but the fopen keeps reading it wrong.
I think the prob is in the representation of the ',' between the two.
$fp = fopen( $name , $mode);
Help!