Na wypadek, gdyby ktoś chciał wygenerować/utworzyć rzeczywisty HTML
plik...
$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);
Cieszyć się!