besser ist in jedem Fall ne Schleife mit foreach
Dynamisches Dropdown auslesen
Einklappen
X
-
Also das funktiniert nur in Kombination mit meiner ersten For Schleife, also so:
PHP-Code:for ($i=0; $i < count($_POST['Match']);$i++)
{
$Match[$i]=$_POST['Match'][$i];
foreach ($Match[$i] as $key => $value)
{
echo $key ;
echo $value;
}
}
Kommentar
Kommentar