Printing with out using echo - PHP Views : 247
Tagged in : PHP
0 0
Send mail
When ever there is a need to print only a variable in php like
<?php
echo $ff;
?>

we can instead use
<?= $ff ?>

Example:

<?php
$ff = "testing echo trick";
?>

<?= $ff ?>
By rajesh, On - 2010-01-01



    Login to add Comments .