Is it possible to use date as a filename when creating/opening one with fopen? I have a form that writes user data to txt file, but I would like that everytime user submits info, new txt file is generated with date in file name.
Here is my try
$myfile='/home/myaccount/public_html/test/tiog/'.date('m-d-Y_hia').'.txt';
$fh = fopen($myFile, 'w') or die("can't open file");
fwrite($fh, $upisufajl);
fclose($fh);
Error I'm getting is
Warning: fopen() [function.fopen]: Filename cannot be empty in /home/...
And how could I encode it in UTF8, so that it supports special characters (čćšđž)?
Thanks