I Did, it adds them up, ill give you part of my code...
PHP Code:
$number = 0;
foreach ($songs as $filename)
{
$songname = "$filename";
$filename = "./ddrsongs/$filename.ddr";
if(file_exists($filename))
$variable = file_get_contents($filename);
$variable = "[$songname] - User Favorites:\n";
file_put_contents($filename, $variable);
$number = $number + 1;
// Rename For output
$before = array('[heart]', '[2]', '[star]', '[A]', '[coma]', '[q-mark]', '[e]');
$after = array('♥', '<sup>2</sup>', '★', '∀', ',', '?', 'é');
$entry = str_replace($before['...'], $after['...'], $songname);
...
$output = " <li>Creating File #$number: $entry</li>\n";
echo $output;
}

Hey, umm, i just got it ^^;
PHP Code:
sleep(1);
echo $output;
ob_flush();
flush();
thanks anyway ^^;