Does anybody know for performance purposes what the best way to write a program would be.
For example:
<?php
$hello = "Hello World";
echo "<center>";
echo "<font size=6>";
echo $hello;
echo "</font>";
echo "</center><br>";
?>
OR
<?php
$hello = "Hello World";
?>
<center>
<font size=6>
<?php echo $hello; ?>
</font>
</center>
<br>
Does it take more processing and power to coming in and out of PHP multiple times?
THANKS
~dabehr