xxxxxxxxxx
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exemple HTML avec PHP</title>
</head>
<body>
<h1>Exemple HTML avec PHP</h1>
<?php
// Code PHP incorporé
$message = "Bonjour, monde!";
echo "<p>$message</p>";
?>
<p>Ceci est une page HTML simple avec du code PHP incorporé.</p>
</body>
</html>