Lesson 5 of 3017%

(Progress persistence is disabled until Phase 9)

PHP
Beginner

Comments

Learn about Comments in PHP.

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

Real code examples

<?php
// This is a single-line comment

# This is also a single-line comment

/*
This is a multiple-lines comment block
that spans over multiple
lines
*/
echo "Comments are ignored by the parser.";
?>

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

Take QuizBuild a PHP Project