Maison  >  Article  >  développement back-end  >  php生成html的有关问题

php生成html的有关问题

WBOY
WBOYoriginal
2016-06-13 13:35:54801parcourir

php生成html的问题
目前是动态的。怎么写生成html . 模板和程序是分离的

$sql="select * from dede_archives" ;
$res=mysql_query($sql);
$row=mysql_query_fetch($res);

$row[title] $row[content] …… 很多个值。





怎么样把这个结果写到 指定的模板 (模板已有样式 show.htm )



------解决方案--------------------

探讨
目前是动态的。怎么写生成html . 模板和程序是分离的

$sql="select * from dede_archives" ;
$res=mysql_query($sql);
$row=mysql_query_fetch($res);

$row[title] $row[content] …… 很多个值。

怎么样把这个结果写到 指定的模板 (模板已有样式 show.htm )

------解决方案--------------------
define('INTSIDE_CATALOG_ROOT', '本地URL');
foreach ($date as $rows)
{
$html.='';
$html.=' php生成html的有关问题 ';
$html.='
';
}
$open=fopen(INTSIDE_CATALOG_ROOT.$var_name_sql[0]['Type_varname'].'.html',"w+");
$write_in=fwrite($open,$html);
if ($write_in==false){
$mg=$var_name_sql[0]['Type_varname'].'文件生成失败';//向日志中添加数据
Log_File::writeAppwwwadminLog($mg);
}
fclose($open);
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn