Lesson 17 of 3057%
(Progress persistence is disabled until Phase 9)
PHP
Beginner
If
Learn about If in PHP.
PHP is a powerful server-side language. In this lesson, we will cover If.
Real code examples
<?php
$time = date("H");
if ($time < "20") {
echo "Have a good day!";
}
?>
Common mistakes
Make sure you include the <?php tag when writing PHP!
Try It Yourself
You can experiment with this in the Playground.