찾다

 >  Q&A  >  본문

초보자의 도움말: PHP에서 정적 목록을 생성하는 루프에 대해

여러분에게 물어보겠습니다. 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); 	
}


°无恙。°无恙。2015일 전1024

모든 응답(1)나는 대답할 것이다

  • 殘留の回憶

    殘留の回憶2019-05-25 09:33:53

    for 루프에서 데이터베이스를 순회했고, 당연히 나오는 데이터가 반복됩니다. 데이터베이스의 while 루프를 외부에 두고 i는 그 안에 넣기만 하면 됩니다

    회신하다
    0
  • 취소회신하다