Possible Duplicate:
php echo vs open&close tag
Does there are any difference in Terms of Speed between:
<?php
..somephp code
?>you have 4 bananas<?php .....
..some more.... ?>
and
<?php
..somephp code
echo "You have 4 bananas";
..some more.... ?>
Thanks in Advance