Jump to content

how to use (timestamp > 72 hours) in an if statement????


seany123

Recommended Posts

basically im trying to give people premium content on my site, this premium content is going to be allowed by giving the buyer a unique code which goes into my database (along with a timestamp), basically im wanting an if statement to say if the timestamp > 72 hours ago, then dont allow access.

 

example:

if (timestamp >= 72 hours){
}

can anyone help me with this please?

 

thanks

Link to comment
Share on other sites

Quite simple.

// either
$timestamp = 1234567890; // if numeric
// or
$timestamp = strtotime("2009-02-13 15:31:30"); // if string -> numeric

if ($timestamp >= time() - 72*3600) {
    // still good
}

That's 72 hours worth of time, not 3 days and zero hours.

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.