Codice PHP:
<?php
$titolo= $_POST['titolo'];
$nome= $_POST['nome'];
$tpl = file_get_contents("template.html");
$page = preg_replace("{titolo}", $titolo, $tpl);
$page = preg_replace("{nome}", $nome, $page);
$file = fopen("pagina.html", 'w');
fwrite($file, $page);
fclose($file);
?>