Trying to pass cart data to shipping .cgi script
Posted: Thu Feb 12, 2004 5:44 pm
Hi. I am trying to pass data from our SS6 cart to a shipping .cgi that I am
writing, but I get no data returned. In the example below, it just prints
the words cust_zip, followed by the price (456.00). I have already tried
preceding it with & and $ and enclosing it in {} and ' and everything else I
could think of. Anybody know how to pass any data at all from the cart to a
script? At this point I would settle for store id or locale, just to see
that data from the cart is being passed. Thanks in advance.
$zippy = 'cust_zip';
{
print "status=pass\noption_count=1\ns1option=$zippy\ns1price=456.00";
exit;
}
writing, but I get no data returned. In the example below, it just prints
the words cust_zip, followed by the price (456.00). I have already tried
preceding it with & and $ and enclosing it in {} and ' and everything else I
could think of. Anybody know how to pass any data at all from the cart to a
script? At this point I would settle for store id or locale, just to see
that data from the cart is being passed. Thanks in advance.
$zippy = 'cust_zip';
{
print "status=pass\noption_count=1\ns1option=$zippy\ns1price=456.00";
exit;
}