0) { $rechtsformen = $_POST['rechtsform']; } else { $rechtsformen = array(); //TODO alle Rechtsformen hinzufügen $rechtsformen[] = 2; } $sitze = array(); if (isset($_POST['sitze']) && is_array($_POST['sitze']) && count($_POST['sitze']) > 0) { $sitze = $_POST['sitze']; } else { $sitze = array(); //TODO alle Sitze hinzufügen $sitze[] = 27; } // Loop through the selected values foreach ($rechtsformen as $rechtsform) { $data["legalFormId"] = $rechtsform; // Loop through the selected values foreach ($sitze as $sitz) { $data["legalSeatId"] = $sitz; $response = sendAPICompanySearchRequest($username, $password, $data); // echo $response; echo communityCSV($username, $password); } } // Process the Zefix response and construct your own response // ... $constructed_response = $response; // Send the response back to the client //header('Content-Type: application/json'); //echo $constructed_response; ?>