Forum Moderators: coopster
When using a small piece of code within the html body of a page, does it matter if I use a single line of code VS a formatted one?
For example:
<?php
echo("<img src=\"$file\">");
?>
VS
<?php echo("<img src=\"$file\">");?>
Does it matter, or it just for visual appearence to organize the code?
Thanks.