Hi,

I'm I missing something? I'm trying to get data into a session (booking.php) and then 
print it off by a second page (test3.php).

booking.php:

$_REQUEST["submit"]=isset($_REQUEST["submit"])?$_REQUEST["submit"]:"";
if($_REQUEST['submit']!="")
{
$dater=$_POST['$dater'];
$aantalvol=$_POST['$aantalvol'];
$aantalkind=$_POST['$aantalkind'];
$aantalvol=addslashes($_POST['aantalvol']);

session_start();
$_SESSION['dater'] = $dater;
$_SESSION['aantalvol'] = $aantalvol;
$_SESSION['aantalkind'] = $aantalkind;
$_SESSION['1pk'] = $eenpk;
$_SESSION['2pk'] = $tweepk;

header( "Location: test3.php" );
}

test3.php

<?
session_start();
echo $_SESSION['aantalvol'];
?>

I get page not be displayed...

Even with the full URL in the HEADER section it doesn't work..

Some one can help me please?

Txs,

Frank

Reply via email to