Using PHP is REALLY REALLY simple! Just rename your .html file(s) to .php and using PHP tags make portions of the page dynamic.

Sample Script
<html>
<head><title>My 1st PHP Script</title>
<body>
Welcome, the current time is: <?php echo date("r"); ?>
</body>
</html>
Output
My 1st PHP Script Welcome, the current time is: Sun, 22 Dec 2024 16:24:40 +0000