Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como gerar uma página HTML dinamicamente usando PHP?


Apenas no caso de alguém querer gerar/criar HTML real Arquivo...
$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);

Aproveitar!