here is my code, where i make mistake? Btw my time ZONE is UTC + 2:00. Thanks for answers in advance.

<?php

    $current_time = date('H');

    if ($current_time >18) {
    echo "Good night";
    }
    if ($current_time <12) {
    echo "Good morning";
    }
    if (($current_time >=12) && ($current_time <17)) {
    echo "Good day";
    }

?>
link|improve this question

0% accept rate
What is the problem? What doesn't work? WHat does $current_time contain? – Pekka Sep 25 '11 at 21:32
feedback

4 Answers

$current_time = date('H');

if ($current_time >18) {
echo "Good night";
} else if ($current_time <12) {
echo "Good morning";
} else {
echo "Good day";
}
link|improve this answer
feedback

Your last test should check for $current_time <=17. Note the less than or equal to... if (($current_time >=12) && ($current_time <=17))

@Ernestas Stankevičius has a nice clean solution though.

link|improve this answer
feedback

try doing var_dump($current_time); and u will understand what does it contain and where u r mistaking..

link|improve this answer
and use a if-else ladder to reduce no. of comparison checks – pkswatch Sep 25 '11 at 22:04
feedback

As predicted, the problem is in time zone.

<?php
    date_default_timezone_set('Europe/Sofia');
    $current_time =date('H');

    echo "$current_time";
    if ($current_time >'18') {
    echo "Good night";
    }
    if ($current_time <'12') {
    echo "Good morning";
    }
    if (($current_time >='12') && ($current_time <='17')) {
    echo "Good day";
    }

?>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.