Tøm array
Hvordan får jeg tømt et array?<?php
if ($_POST) {
session_start();
if (isset($_SESSION['forestilling'])) {
$forestilling = $_SESSION['forestilling'];
}
else {$forestilling = array();}
$forestilling[] = array($_POST['spillested'],$_POST['spillecal']);
$_SESSION['forestilling'] = $forestilling;
# Header("Location: varer.php");
if ($forestilling) {
for ($i=0;$i<sizeof($forestilling);$i++) {
echo '</pre>' . "\n";
echo "<b>";
echo "Spillested: ".$forestilling[$i][0]."<br />";
echo "<br>\n";
echo "Spilledato: ".$forestilling[$i][1]."<br />";
echo "</b>";
}
}