difference b/w print and echo in php code example
Example 1: echo php
<?php
$string = "Hello, World!";
echo $string;
?>
Example 2: print in php
print_r("");
<?php
$string = "Hello, World!";
echo $string;
?>
print_r("");