KelloKitty Posted January 27, 2010 Share Posted January 27, 2010 Hello! I'm kind of a PHP rookie but I know I have to do something somewhat challenging...I'd be really thankful for any help I have a directory that will show a list of directories that will be named by year/month/day/ like this: 2009_05_15 2009_05_16 2009_05_17 2009_05_18 2009_05_19 2009_05_20 So theoretically from my website the user will enter in the fields the Year, Month, and day (and maybe hour) that they want so they can download the files that are within that directory(Y/M/D named). So how can I display only the directories from the date the user entered? So far I'm only able to download the files once I'm in the directory : <?php if ($dir_handle = opendir(".")) { while (($curr = readdir($dir_handle)) !== false) { //!== is not a typo ?> <a href="<?=$curr ?>"><?=$curr ?></a> <br></br> //(<?=$curr ?>) is short for <?php echo $curr; ?> <?php } //end while } //end if ?> Is this do-able? Any help much appreciated! Quote Link to comment https://forums.phpfreaks.com/topic/189973-only-show-directories-that-have-name-of-date-entered-by-user-postposted-wed-jan/ Share on other sites More sharing options...
RussellReal Posted January 28, 2010 Share Posted January 28, 2010 glob Quote Link to comment https://forums.phpfreaks.com/topic/189973-only-show-directories-that-have-name-of-date-entered-by-user-postposted-wed-jan/#findComment-1002747 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.