Is it necessary to use echo when including PHP files in HTML?

It is not necessary to use `echo` when including PHP files in HTML. Using `include` or `require` functions in PHP is sufficient to include the contents of another PHP file within an HTML file.

<?php include 'file.php'; ?>