Good day to you all, my question this time seems easy but, I dont have a clue on how to do this... I would like to read the directory of today... if ($handle = opendir('Y/m/d,time()')) { PHP: Can somebody help me in wording this ? Thanks !
Directory name can not contain "/" char. So, the way to go may be this: if ($handle = opendir(date("Y.m.d", time())) { // do something } PHP: