I have a page which displays info about a property, based on the unique ID from the url, searching the mysql database for that ID, getting all the info from that row etc, fa
Just in case someone wants to generate/create actual HTML file...
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);
Enjoy!