Jump to content

Open file if date matches...


GsT

Recommended Posts

Hello,

 

Im a newbie when it comes to PHP. Im trying to make a script that only shows/lists a PDF-file if the filename matches with todays date.

 

So if I wanted to show a PDF fil on the site (only for) today I would upload it to a folder and name the file with todays date ex. 20091125.pdf.

 

Any easy way to do this?

 

 

Link to comment
https://forums.phpfreaks.com/topic/182914-open-file-if-date-matches/
Share on other sites

As my signature states, I don't always test the code I post here. I typically provide a "logical" solution and leave it up to the posterr to fix any minor typos.

 

$todayFile = date('Ymd') . '.pdf'; //Assumes leading zeros are used
if (file_exist($todayFile))
{
    echo "<a href=\"{$todayFile}\">{$todayFile}</a>\n";
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.