Nieuw lid |
|
Hallo,
Ik heb een fout in mijn php code, ik heb al op google gekeken enzo.
Komt het misschien doordat ik een array push in een sessie?
if (!isset($_SESSION['pogingen'])) {
$_SESSION['pogingen'] = array(1 => $input);
} else {
$pcount = count($_SESSION['pogingen']);
if ($pcount < 2) {
array_push($_SESSION['pogingen'], 2 => $input);
} else if ($pcount < 3) {
array_push($_SESSION['pogingen'], 3 => $input);
}
}
if (!isset($_SESSION['pogingen'])) { $_SESSION['pogingen'] = array(1 => $input); } else { $pcount = count($_SESSION['pogingen']); if ($pcount < 2) { } else if ($pcount < 3) { } }
|