Php - How to print without using echo, Print a statement

How to print without using echo


When ever there is a need to print only a variable in php like
<?php
echo $val;
?>
we can instead use
<?= $val ?>

Example:
$val = "testing echo trick";
?>


The topic on Php - How to print without using echo is posted by - Maha

Hope you have enjoyed, Php - How to print without using echoThanks for your time

Tech Bluff