Hi,
on form 1 I add the value from $row to $POST. If I echo either $post or $row beneath the value is displayed.
$SESSION['user'] = $POST['user'];
$_POST['supplierid'] = $row['supplierid'];
$location = "Location: reservation.php";
header($location);
exit
But then on the next page $_POST is empty. Why?
Any ideas will be highly appreciated.
Marius