Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
<?php
$hour = date('G'); //This outputs the current hour in 0 - 23 (24 hour format)
if($hour >= 20 || $hour <= 2)
{
?>
<html>
<body>
This HTML is displayed from 8pm to 2am.
</body>
</html>
<?php
}
else
{
?>
<html>
<body>
This HTML is displayed before 8pm and after 2am.
</body>
</html>
<?php
}
?>
1 to 4 of 4