[php:1:ade7d825ba]<?
$flag = true;
foreach($data as $file){
if(!is_writable($file)){
$flag = false;
printf('Вы не собрали %s', $file);
}
else printf('Вы собрали %s', $file);
}
if($flag) printf('<a href="..."> Следующий шаг </a>');
else printf('<a href="..."> Обновить </a>');[/php:1:ade7d825ba]