hide_287****@chive*****
hide_287****@chive*****
2005年 8月 19日 (金) 20:11:57 JST
ご回答いただきまして、ありがとうございます。 早速、茅野様に教えて頂いたとおりにファイルを変更して、タグ挿入出来ました。 茅野泰明@DB wrote: > メディアネット 茅野です。 > > うちのサイトでもA8のアフィリエイトを適用しており、そこで設定しているソー > スがありますので、掲載しておきます。 > > /catalog/indcludes/functions/general.phpあたりで以下の関数を定義しておき > ます。 > > function affiliate_A8($order_id) { > $url_suffix = '&so='.$order_id; > > $orders_product_query = tep_db_query("select products_id, products_price, final_price, products_quantity from " . TABLE_ORDERS_PRODUCTS . " where orders_id = '" . $order_id . "'"); > while ($orders_product = tep_db_fetch_array($orders_product_query)) { > $amount = floor($orders_product['products_price'] * $orders_product['products_quantity']); > $url_suffix .= '&si='. floor($orders_product['products_price']) . '.' . $orders_product['products_quantity'] . '.' . $amount . '.' . $orders_product['products_id']; > } > return A8_AFFILIATE_URL . $url_suffix . '&ts=' . date(YmdHis); > } > > なお、A8_AFFILIATE_URLは適当なところで適切な値をdefineしておいてください。 > そして、checkout_success.phpにて以下のタグを設置します。 > > <IMG SRC="<?php echo affiliate_A8($orders['orders_id']); ?>" width="1" > height="1"> > > これできっとうまくいくはずです。 > 例によって、ご自身の責任において設置、運用してくださるようお願いします。 どうもありがとうございました。