What are some best practices for naming PHP files when including them in HTML pages?

When including PHP files in HTML pages, it is important to follow naming conventions that are clear and descriptive. This can help maintain organization and make it easier to identify the purpose of each file. A common practice is to use meaningful names that reflect the content or functionality of the PHP file.

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