In this article, you will learn about echo keyword in PHP. The echo keyword in PHP is used to output text. The echo statement can output multiple strings separated by commas.
examples of the ECHO keyword
Example 1. In this example, we use echo to output some text.
<?php
echo "Hello World!";
?>