what im trying to do. submit the vars from a form when all vars are TRUE
i have the above code on pp1 which checks to se if a form has been entered correctly.. if all these vars are ture then the form should be processed and sumit all the vars to the next page tired using this code but the vars were not sent to the next page for processing..
if ($_SESSION ['cust_name'] and $_SESSION ['cust_phone'] and $_SESSION ['cust_email'] and $_SESSION ['order_no_people'] and $_SESSION ['arrive'] and $_SESSION ['customer01']) {
header("Location: order_review.php?id=$id");
}
but the vars are not sent to the next page?