Hi friends
I need to write s string into a log file a string each time I run my php script.
How could I write the details into a new line each time I run.
I tried using \n but it is not working.....
eg:
$logdetail= "date: ".$todate.$coun t."values inserted\n";
fwrite($fptr, $logdetail);
THIS IS VERY URGENT Friends
I need to write s string into a log file a string each time I run my php script.
How could I write the details into a new line each time I run.
I tried using \n but it is not working.....
eg:
$logdetail= "date: ".$todate.$coun t."values inserted\n";
fwrite($fptr, $logdetail);
THIS IS VERY URGENT Friends
Comment