hostfreak Posted July 18, 2007 Share Posted July 18, 2007 I have data that is inserted into a database, one of the fields is named 'time_stamp' and is a "datetime; 0000-00-00 00:00:00" type. I was wondering how one could make an if statement that will show code (code is just the editing portion of the page) if the 'time_stamp' is less than the 'time_stamp' + 72 hours. Other wise, don't show the code and inform them that they can no longer edit. Thanks in advance. Quote Link to comment Share on other sites More sharing options...
metrostars Posted July 18, 2007 Share Posted July 18, 2007 <? $currentdate = strtotime("now"); $mysqldate = strtotime($mysqldate); if($currentdate - $mysqldate <= 259200) { //show code } else { // dont show code } ?> Quote Link to comment Share on other sites More sharing options...
hostfreak Posted July 18, 2007 Author Share Posted July 18, 2007 Works like a charm, thanks. Quote Link to comment 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.