What is the use of echo PHP? code example
Example 1: php echo
<?php
echo "your text";
?>
Example 2: echo php
<?php
$string = "Hello, World!";
echo $string;
?>
<?php
echo "your text";
?>
<?php
$string = "Hello, World!";
echo $string;
?>