PHP Program to print text using echo command
<?php
/*print string*/
echo "Hello world\n";
/*print variable values*/
$text = "Sample text";
$lucky_number = 100;
echo "</br>";
echo "Value of text is: " . $text . " Lucky number is: " . $lucky_number . "\n";
?>
Output
Hello world
Value of text is: Sample text Lucky number is: 100
