mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2024-11-22 23:23:42 +01:00
27 lines
491 B
PHP
Executable File
27 lines
491 B
PHP
Executable File
<?php
|
|
|
|
session_start();
|
|
|
|
if (!isset($_SESSION['warenkorb'])) {
|
|
$_SESSION['warenkorb'] = [];
|
|
}
|
|
|
|
function holeSortiment()
|
|
{
|
|
return [
|
|
1 => 'Moderne Webseiten entwickeln',
|
|
2 => 'PHP 7 und MySQL - Das umfassende Handbuch',
|
|
3 => 'Der große Fotokurs - Richtig fotografieren lernen'
|
|
];
|
|
}
|
|
|
|
function zaehleWarenkorb()
|
|
{
|
|
$ergebnis = 0;
|
|
foreach ($_SESSION['warenkorb'] as $artikelId => $anzahl) {
|
|
$ergebnis += $anzahl;
|
|
}
|
|
|
|
return $ergebnis;
|
|
}
|