seany123 Posted June 10, 2011 Share Posted June 10, 2011 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 https://forums.phpfreaks.com/topic/239023-how-to-use-timestamp-72-hours-in-an-if-statement/ Share on other sites More sharing options...
requinix Posted June 11, 2011 Share Posted June 11, 2011 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 https://forums.phpfreaks.com/topic/239023-how-to-use-timestamp-72-hours-in-an-if-statement/#findComment-1228151 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.