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. Link to comment https://forums.phpfreaks.com/topic/60534-solved-allow-to-edit-within-x-hours/ 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 } ?> Link to comment https://forums.phpfreaks.com/topic/60534-solved-allow-to-edit-within-x-hours/#findComment-301126 Share on other sites More sharing options...
hostfreak Posted July 18, 2007 Author Share Posted July 18, 2007 Works like a charm, thanks. Link to comment https://forums.phpfreaks.com/topic/60534-solved-allow-to-edit-within-x-hours/#findComment-301127 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.