Wie möchten Sie bevorzugt kontaktiert werden, wenn Ihr Auftrag erledigt ist?

'; $num = 0; $phonenumbers = array_filter($_SESSION['phonenumbers'], function($v) { return str_starts_with($v, '+491'); }); $emailaddrs = $_SESSION['emailaddrs']; $num = count($phonenumbers) * 2 + count($emailaddrs); if ($num < 2) { // Nichts zum aussuchen! header('Location: gitterbox.php'); } foreach ($phonenumbers as $phone) { $phone = format_number_national($phone); $content .= ' '; $content .= ' '; } foreach ($emailaddrs as $email) { $content .= '
'; } $content .= '
'; $content .= '
'; include("template.php");