Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
$anzahl_g=$_POST['anzahl_g']; $w=0;
$arraysize = count($anzahl_g);
while ($w < $arraysize)
{
echo $anzahl_g[$w];
echo "<br>";
$w++;
echo $w;
}
Würd ich auch so unterschreiben!Tipp: verwende doch foreach() um das Array komplett auszulesen.