When using PHP, does it matter where you place the code?
For example,
Option One:
<?php code goes here at the top ?>
[rest of webpage]
<h2><?php echo ' $random_thing' ?></h2>
Option Two:
<php connect blah blah select blah;
echo ' $random_thing';
?>
Hopefully that makes sense...






























