What are common issues when including files in PHP, and how can they be resolved?

Common issues when including files in PHP include incorrect file paths, missing files, and naming conflicts. To resolve these issues, ensure that the file paths are correct, the files exist in the specified location, and avoid naming conflicts by using unique names for included files.

// Example of including a file with correct file path
include 'path/to/file.php';