2
私は変更を保存し、ユーザーが入力したフォームに基づいた名前でテンプレートを保存するプロジェクトに取り組んでいます。私は、ファイルを保存する方法を発見した、しかし、私は、テンプレートを作成するテンプレートを使用して、ユーザー埋めフォームphp autoはテンプレートからページを生成します
<?php
$name='kavin';
$fh = fopen($name + ".html", 'w') or die("Could not create the file.");
fwrite($fh, $text) or die("Could not write to the file.");
fclose($fh);
echo "File " . $name . ".html created!";
?>