Đề phòng trường hợp ai đó muốn tạo / tạo HTML
thực tế tệp ...
$myFile = "filename.html"; // or .php
$fh = fopen($myFile, 'w'); // or die("error");
$stringData = "your html code php code goes here";
fwrite($fh, $stringData);
fclose($fh);
Vui thích!