CreativPur
Erfahrenes Mitglied
Ich habe mehrer UPDATE in diesem Lottosystem, allerdings ohne dem
Da funktioniert es und die Daten werden gespeichert.
Ich verstehe es ja selbst nicht...
PHP:
$nr = count($_POST['wochentag']);
$aktiv = [];
for ($i = 0; $i < $nr; $i++) {
$aktiv[$i] = 0;
}
for ($j = 0; $j < count($_POST['aktiv']); $j++) {
$i = $_POST['aktiv'][$j];
$aktiv[$i] = 1;
}
Ich verstehe es ja selbst nicht...