In this article, you will learn how to print output in PHP. The print keyword in PHP is used to output text.
Print can only output one string at a time.
examples of the PRINT function
Example 1. In this example, we output some text.
<?php
print "Hello World!";
?