請教下各位大佬,php產生靜態列表,循環之後資料庫值是正常的,但是產生的html資料一直重複第一次循環的資料。
for ($i=0; $i < $allpages; $i++){ if ($i==0) { $indexpath = "index_0.html"; } else { $indexpath = "index_".$i.".html"; } $star = $i* $onepage; $list =''; $sql= "select path,title from article limit $star,$onepage"; $result = mysql_query ($sql); while($row=mysql_fetch_assoc($result)) { $list.= '<a href="2019/'.$row['path'].'" target="_blank"><li>'.$row['title'].'</li></a><br>'; } $content = str_replace("{articletable}",$list,$content); if (is_file ($indexpath)) { @unlink ($indexpath); } $handle = fopen ($indexpath,"w"); fwrite ($handle,$content); fclose ($handle); }
你在for循環裡一直在遍歷資料庫,出來的當然都重複的數據,把資料庫的while循環放外面,i放裡面就可以了