PHP "echo VS print"
"echo" and "print" are almost identical because we use both of them to display data to screen while there are some differences between the two.
echo doesn't return any value.
<?php
echo "hello world";
?>
this just prints hello world ...
elghazali.hashnode.dev1 min read