So I want to make a directory (I'm making a sort of blog type program) bsaed on the date, for instance, if a post is made, the data of that post is stored in a text file in the directory
day/month/year
(I don't want to use mysql.)
Anyways, I thought this would do it.
It returns
Any php experts around?
day/month/year
(I don't want to use mysql.)
Anyways, I thought this would do it.
Code:
$date = date("d/m/y");
mkdir($date, 0700);
It returns
Code:
Warning: mkdir() [function.mkdir]: No such file or directory in C:\Program Files\EasyPHP 2.0b1\www\index.php on line 7
floppy jalopy
Any php experts around?