I would like to allow users to be able to perform an action on my site only between 6:30 a.m to half past midnight 12:30 a.m. everyday.
If time is between ....... then perform action.
Any ideas...
thanks carole..
Something like this
<?php $curr_hour = (int)date("G",time()); $curr_min = (int)date("i",time()); $minutes = 60*$curr_hour + $curr_min; if( ($minutes >= 6*60+30) || ($minutes < 30) ) { // perform action } else { die("Denied"); } ?>