Permalink
Cannot retrieve contributors at this time
DatabasesPhase2_GroupE/customerPages/cCreateOrder_save.php
Go to file<?php | |
require("../dbCon.php"); | |
$_SESSION["shoppingCart"] = $_GET['shoppingCart']; | |
$_SESSION["RequiredBy"] = $_GET['RequiredBy']; | |
$_SESSION["ShipmentMethod"] = $_GET['ShipmentMethod']; | |
$_SESSION["DeliveryMethod"] = $_GET['DeliveryMethod']; | |
$_SESSION["ShipmentCompany"] = $_GET['ShipmentCompany']; | |
$_SESSION["Name"] = $_GET['Name']; | |
$_SESSION["Address"] = $_GET['Address']; | |
$_SESSION["City"] = $_GET['City']; | |
$_SESSION["Region"] = $_GET[Region]; | |
$_SESSION["PostalCode"] = $_GET['PostalCode']; | |
$_SESSION["Country"] = $_GET['Country']; | |
header("Location:cPayment.php"); |