between this
<script src="js/script.js"></script>
and that
<?php
echo '<script>';
include 'js/script.js';
echo '</script>';
?>
Which is better?
I'm actually wondering about things like HTTP Request and others stuffs...
(the same goes for CSS styles, should I put everything in the same file and send to the user, thus reducing the amount of requests, or should I properly separate just like everyone else do? thus increasing the number of requests)
There is something else that I should be concerned about?