Programming Code Center(PCC)
[PHP]

(PCC)::[How-to-Display-strings-with-the-print-command-in-php]::[php]

File Name : index.php

<!DOCTYPE html>
<html>
<body>

<?php
print "<h2>PHP is Fun!</h2>";
print "Hello world!<br>";
print "I'm about to learn PHP!";
?> 

</body>
</html>

Output :

PHP is Fun!"; print "Hello world!
"; print "I'm about to learn PHP!"; ?>