Help for this page

Select Code to Download


  1. or download this
    use DateTime;
        my $now = DateTime->now( time_zone => 'Pacific/Honolulu' );
    ...
    if ($reservation_date < $now) {
    print "error";
    }
    
  2. or download this
    } elsif ($reservation_date - $now > 7) {
    do something.
    }