What are the potential issues when trying to include a PHP script in an HTML page?
When trying to include a PHP script in an HTML page, one potential issue is that the PHP code may not be parsed correctly if the server does not have PHP enabled. To solve this issue, make sure that the server supports PHP and that the file extension is ".php" instead of ".html".
<?php include 'your_script.php'; ?>