Open and closed function [closed]

    $open   = "our lines are open";
    $closed = "our lines are closed";
    if ( time() >= strtotime( '09:00:00' ) && time() <= strtotime( '17:00:00' ) ) {
        echo $open;
    } else {
        echo $closed;
    }

Somethinh like this should help you.

tech