Printing with out using echo

by rajesh 2010-01-01 15:58:34

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 ?>

Tagged in:

930
like
0
dislike
0
mail
flag

You must LOGIN to add comments