How can external scripts be included in a website using PHP?

To include external scripts in a website using PHP, you can use the `include` or `require` functions. These functions allow you to include external PHP files into your current PHP script, enabling you to reuse code and keep your files organized.

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