What is the correct way to include text in a running HTML page using PHP?

To include text in a running HTML page using PHP, you can use the `echo` or `print` statements to output text directly to the HTML page. This allows you to dynamically generate content based on variables or conditions within your PHP script. Simply enclose the text you want to include in single or double quotes within the `echo` or `print` statement.

<?php
echo "This text will be included in the HTML page using PHP.";
?>