$z = 0; for ($ls = 0; $ls < $anz_ls; $ls++) { $summe = nummer_punkt2komma($ls_arr[$ls]['SUMME']); $datei = $ls_arr[$ls]['DATEI']; if ($summe == $betrag) { $z++; echo "<hr>{$z}. <a href=\"index.php?daten=sepa&option=ls_auto_buchen_file&datei={$datei}\">AUTOBUCHEN {$datei} {$summe}</a>"; } } } } /* ÜBERWEISUNGSAMMLER SEPA */ if ($arr[$a][13] == 'SEPA-UEBERWEIS.SAMMLER-SOLL') { echo "<b>SEPA-ÜBERWEISUNG SAMMLER</b>"; $sep = new sepa(); $ue_arr = $sep->sepa_files_arr($gk_id); if (is_array($ue_arr)) { // print_r($ue_arr); $anz_ue = count($ue_arr); $z = 0; for ($ls = 0; $ls < $anz_ue; $ls++) { $summe = nummer_punkt2komma($ue_arr[$ls]['SUMME']); $datei = $ue_arr[$ls]['FILE']; if ($summe == $betrag * -1) { $z++; echo "<hr>{$z}. <a href=\"index.php?daten=sepa&option=excel_ue_autobuchen&datei={$datei}&auszug={$auszug}&gk_id={$gk_id}&datum={$datum}\">AUTOBUCHEN {$datei} {$summe}</a>"; // excel_ue_autobuchen } } } }