Thomas_Jung
Erfahrenes Mitglied
Hallo
Das Ergebnis ist zweck zweck sondersortierung sondersortierung
Wie schaffe ich es das das Ergebnis zweck sondersortierung zweck sondersortierung lautet
Gruß Thomas
Das Ergebnis ist zweck zweck sondersortierung sondersortierung
Wie schaffe ich es das das Ergebnis zweck sondersortierung zweck sondersortierung lautet
PHP:
foreach ( $_POST as $key => $value )
{
if ( is_array($_POST[$key]) )
{
if ( $key == 'zweck' OR $key == 'sondersortierung' ) {
for ($x=0; $x <count($_POST[$key]); $x++) { $ergebnis .= $value[$x]; }
}
}
} echo $ergebnis;
Gruß Thomas