php循环生成html
发布网友
发布时间:2022-04-19 03:59
我来回答
共2个回答
热心网友
时间:2022-04-19 05:28
你只是读了一条,循环怎么能出现多次呢
for 循环换一下
while($data = mysql_fetch_array($result))
{
$content = file_get_contents($tpl); //读取模板文件的内容
$content = str_replace('{title}',$data['username'],$content); //用具体数据来替换模板标签
file_put_contents($data['id'].'.html',$content); //将替换后的内容写进html文件中
}
热心网友
时间:2022-04-19 06:46
echo $tiaoshu 看看是多少
我觉得应该用
$tiaoshu = mysql_num_rows($result);