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
Share on other sites

Thx mjdamato, that was fast! :)

 

Much closer now! Sadly though I got an parser error: Parse error: parse error, expecting `'(''

 

for this line:

if file_exist($todayFile)

 

If I remove that specific line, the file shows up. Any ideas?

Link to comment
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";
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.