Lesson 18 of 3060%

(Progress persistence is disabled until Phase 9)

PHP
Beginner

Else

Learn about Else in PHP.

PHP is a powerful server-side language. In this lesson, we will cover Else.

Real code examples

<?php
$time = date("H");

if ($time < "20") {
    echo "Have a good day!";
} else {
    echo "Have a good night!";
}
?>

Common mistakes

Make sure you include the <?php tag when writing PHP!

Try It Yourself

You can experiment with this in the Playground.

Lesson Progress

Practice This TopicTake QuizBuild a PHP Project

Ready to practise?

Apply what you learned with a hands-on challenge.

Practise This Topic