बस अगर कोई वास्तविक HTML
उत्पन्न करना/बनाना चाहता है फ़ाइल...
$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);
आनंद लेना!