PhP - only edit at certain dates

Associate
Joined
21 May 2003
Posts
1,008
hi. I've got a table with a field on it which users can change. however i don't want them to change it if the date in another field is less than 24 hours ahead. how would i do this?
 
Code:
<?php

if (($datestamp + 86400) < time()) {
    //allow them to edit
} else {
   //don't
}

?>

$timestamp can be made up in various ways..
 
Back
Top Bottom