Quote:
Originally Posted by Takamine334
Would this work for X days and X time?
Ex. Message would show up only on Monday through Friday from 9am-5pm ?
|
yes possible.
PHP Code:
[[((date("w")>=1 AND date("w")<=5) AND (date("H")>=9 AND date("H")<21))]]
Day is now between monday to friday and hour is between 9.00 AM to 8.59 PM
[[/((date("w")>=1 AND date("w")<=5) AND (date("H")>=9 AND date("H")<21))]]