gpt4 book ai didi

php - OSCommerce 结帐成功页面跟踪

转载 作者:可可西里 更新时间:2023-11-01 01:10:26 26 4
gpt4 key购买 nike

我正在将一些跟踪代码安装到 checkout_success.php 页面中。我需要能够从订单中获取优惠券代码/折扣代码名称(如果使用的话),以便我可以在我的跟踪脚本中回显它。

我想知道是否有人知道如何做到这一点?

我正在使用折扣券的贡献; ot_discount_coupons.php,2006 年 8 月 4 日,作者:Kristen G. Thorson,ot_discount_coupon_codes 3.0 版

似乎优惠券代码实际上并未存储在 order_totals 中,而是存储在单独的 discount_coupons_to_orders 表中。我可以在此表上查询以查找用于此订单的匹配优惠券代码吗?我尝试了以下但没有返回任何内容;

$coupon_query = tep_db_query("select coupons_id from discount_coupons_to_orders where orders_id = '".(int)$orders['orders_id']."' ORDER BY orders_id DESC LIMIT 1"); $coupon_id = tep_db_fetch_array($coupon_query); $couponid = $coupon_id['coupon_id'];

谢谢。

最佳答案

代替:

$couponid = $coupon_id['coupon_id'];

尝试:

$couponid = $coupon_id['coupons_id'];

关于php - OSCommerce 结帐成功页面跟踪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2491103/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com