How do I create a html created by this php instead of containing the text between the quotes, it contains information that comes from my database.
<?php
# Nome do arquivo html
$pagename = "pastatest/paginahtml.html";
# Texto a ser salvo no arquivo
$texto = "<h1>texto que vai conter no html</h1>";
#Criar o arquivo
$fp = fopen($pagename , "w");
$fw = fwrite($fp, $texto);
#Verificar se o arquivo foi salvo.
if($fw == strlen($texto)) {
echo 'Arquivo criado com sucesso!!';
}else{
echo 'falha ao criar arquivo';
}
?>