function addCart($aantal, $artikel) {
if (!isset($aantal) || !is_numeric($aantal) || !isset($artikel) || !is_numeric($artikel)) { exit(); }
// Controleren of er al inhoud is op de winkelwagen
if (empty($_SESSION['cart'])){
$_SESSION['cart'][] = array("aantal" => $aantal, "artikel" => $artikel);
} else {
$add = TRUE;
foreach($_SESSION['cart'] as $index=>$inhoud){
if ($inhoud['artikel'] == $artikel) { // Product al in de winkelwagen, dus aantal ophogen
$_SESSION['cart'][$index]['aantal'] = $_SESSION['cart'][$index]['aantal'] + $aantal;
$add = FALSE;
}
}
if ($add) { // Niet aanwezig, dus toevoegen
$_SESSION['cart'][] = array("aantal" => $aantal, "artikel" => $artikel);
}
}
//return (print_r($_SESSION['cart']));
}
// Controleren of er al inhoud is op de winkelwagen
if (!is_array($_SESSION['cart'])){
$_SESSION['cart'] = array();
$_SESSION['cart'][] = array("aantal" => $aantal, "artikel" => $artikel);
}
// Controleren of er al inhoud is op de winkelwagen
function addCart($aantal, $artikel) {
if (!isset($aantal) || !is_numeric($aantal) || !isset($artikel) || !is_numeric($artikel)) { exit(); }
// Controleren of er al inhoud is op de winkelwagen
if (!is_array($_SESSION['cart']) || empty($_SESSION['cart'])){
$_SESSION['cart'] = array();
$_SESSION['cart'][] = array("aantal" => $aantal, "artikel" => $artikel);
} else {
$add = TRUE;
foreach($_SESSION['cart'] as $index=>$inhoud){
if ($inhoud['artikel'] == $artikel) { // Product al in de winkelwagen, dus aantal ophogen
$_SESSION['cart'][$index]['aantal'] = $_SESSION['cart'][$index]['aantal'] + $aantal;
$add = FALSE;
}
}
if ($add) { // Niet aanwezig, dus toevoegen
$_SESSION['cart'][] = array("aantal" => $aantal, "artikel" => $artikel);
}
}
//return (var_dump($_SESSION['cart']));
}