I'm trying to timestamp a file after the time its created and then add extension :
$file_name = "reports/".date('m-d-Y_g:ia').".txt";
$fp = fopen($file_name, 'w');
fwrite($fp, "Did not return any results posted in the past week");
fclose($fp);
its returns file with no extension , any idea? Thanks
Found out why , it didnt accept " : " in the name .