sean04 Posted May 5, 2010 Share Posted May 5, 2010 Hey! So I have an edit profile page going on and certain information shouldn't need to be edited. I want to give the user 5 days to edit data and make sure its right and after the 5 days, it can no longer be edited. Any ideas? I get their signup date when they signup so I imagine it cant be that difficult! Thanks in advance! Link to comment https://forums.phpfreaks.com/topic/200815-cant-edit-data-after-5-days/ Share on other sites More sharing options...
litebearer Posted May 5, 2010 Share Posted May 5, 2010 Psuedo code... get info from db table if signupdate > today - 5 days show data as form field else show data not in form field Link to comment https://forums.phpfreaks.com/topic/200815-cant-edit-data-after-5-days/#findComment-1053668 Share on other sites More sharing options...
sean04 Posted May 5, 2010 Author Share Posted May 5, 2010 Thanks! Yeah that doesn't seem to tough.. I'll take a look into the adding or sub of days... Thanks again! Link to comment https://forums.phpfreaks.com/topic/200815-cant-edit-data-after-5-days/#findComment-1053670 Share on other sites More sharing options...
sean04 Posted May 5, 2010 Author Share Posted May 5, 2010 So something like this? If $loginfo[signupdate] > date('Y-m-d', strtotime('-5 days')) { hide }else{ show } Link to comment https://forums.phpfreaks.com/topic/200815-cant-edit-data-after-5-days/#findComment-1053684 Share on other sites More sharing options...
litebearer Posted May 6, 2010 Share Posted May 6, 2010 found this... http://roshanbh.com.np/2008/03/finding-days-difference-php.html hope it helps... Link to comment https://forums.phpfreaks.com/topic/200815-cant-edit-data-after-5-days/#findComment-1053951 Share on other sites More sharing options...
Daniel0 Posted May 6, 2010 Share Posted May 6, 2010 found this... http://roshanbh.com.np/2008/03/finding-days-difference-php.html hope it helps... date_diff Link to comment https://forums.phpfreaks.com/topic/200815-cant-edit-data-after-5-days/#findComment-1053997 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.