來自菜鳥的求助:關於php生成靜態列表的循環
°无恙。
°无恙。 2019-05-22 18:00:06
0
1
1042

請教下各位大佬,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); 	
}


#
°无恙。
°无恙。

全部回覆(1)
殘留の回憶

你在for循環裡一直在遍歷資料庫,出來的當然都重複的數據,把資料庫的while循環放外面,i放裡面就可以了

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板