Lesson 3 of 3010%

(Progress persistence is disabled until Phase 9)

PHP
Beginner

PHP Tags

Learn about PHP Tags in PHP.

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

Real code examples

<?php
// The standard PHP tags are recommended
echo "This is standard PHP.";
?>

<!-- Short tags (if enabled) -->
<? echo "This is a short tag"; ?>

<!-- Echo tags -->
<?= "This is an echo tag"; ?>

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