ssl
Thank you, Jason. I am getting through now. Only one item is not being passed and that is my promo code discount. How would I put the code into the checkout.php page where the rest of the variables are beign passed?
<tr>
<td class="eC_SummaryLabel">WWMAG 20%</td>
<td>-<?php echo WA_eCart_DisplayMoney($winkee, $winkee->GetDiscounts()); ?></td>
</tr>
Also has a session:
<?php
if (!session_id()) session_start();
if((((isset($_POST["txtpromocode"]))?$_POST["txtpromocode"]:"") != "")) {
$_SESSION["promocode"] = "".((isset($_POST["txtpromocode"]))?$_POST["txtpromocode"]:"") ."";
}
?>
Thank you,
K