Hi,
I need to pass the credit card expiration year and month to my gateway. I've tried every combination of set variable that I can and nothing is working. Here's what it looks like:
// code I added further down where other code of this type exists
$t->set_var("cc_expiry_yyyy", $variables["cc_expiry_yyyy"]);
$t->set_var("cc_expiry_month", $variables["cc_expiry_month"]);
then in order_confirmation.html, I added this to the form
<input type="hidden" name="expmonth" value="{cc_expiry_month}">
<input type="hidden" name="expyear" value="{cc_expiry_yyyy}">
Can someone please tell what is wrong with this and how I can put the month and year of the expiration date on the order_confirmation form.