How can PHP be effectively used to include text in an HTML page?
To include text in an HTML page using PHP, you can use the `echo` or `print` functions to output the desired text within the HTML tags. This allows you to dynamically generate content on your webpage based on variables or conditions within your PHP code.
<?php
$text = "Hello, World!";
echo "<p>$text</p>";
?>