>>832

>>827さんのソースを下に手を加えてみました。
こんな感じで大丈夫ですか?

------hoge.php-------
<?php
$name = "さとうさん";
$str = file_get_contents("hoge.html");
$txt = strtr($str, $name, "<%NAME%>");
echo $txt;
?>

------hoge.html------
<html>
<body>
<%NAME%>
</body>
</html>