Mysql
 sql >> Database >  >> RDS >> Mysql

Come generare una pagina HTML in modo dinamico usando PHP?

Nel caso qualcuno volesse generare/creare un vero HTML file...

$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);

Divertiti!