I need to comment out a part of code during certain day and time of the week. Say i need it to be commented out on Saturday from 5 to 6 pm...
if (date(D) == 'Sun' && (6 > date(D) > 5) { // is this what I put here???
echo 'content here';
}
Obviously it'll need to be according to my server time so that my server could run a CRON process in that interval.