Printing with out using echo - PHP Views : 230
Tagged in : PHP
Send mail vote down 0 vote down 0
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 .