One of the most useful tactics in affiliate marketing is to cause a buyer to have a sense of urgency. 1つのアフィリエイトマーケティングの中で最も有用な戦術の切迫感があるには買い手が原因で発生することです。 You want them to buy a product and cause them to act on the spot since “time is running out”.それらの製品を購入してその場で"タイムアウトが実行されて以来、行動を起こす"とします。 How can this be accomplished?どのように達成することができますか? and how can we automate it!にどうやってそれを自動化することができます!

From my point of view a site loses its trust value when you’re showing a special that ends the next day.ビューのサイトは、信頼値は特別なときには、次の日に終了を示している私のポイントを失う。 If you are trying to keep a “special” ongoing, but at the same time want to cause a sense of urgency a simple script showing the next day just doesn’t cut it anymore.場合は"特別な"継続的な維持しようと努力しているが、同時に切迫感は、単純なスクリプトは、次の日には、もはやそれを切っていないことを示すが原因で発生します。 This can be represented by “Our special discount offer ends (Insert: tomorrow=currentdate 1)”.この"我々の特別割引を提供する(挿入:明日= currentdate 1 ) "終了で表現することができます。 Take a look at how easy a script like that is to make (PHP):どのように簡単なスクリプトを見てください( PHPの)ようにすることです:

  1. // Displays "Tomorrow: 7-28-2007"
  2. <?php
  3. //Change the "1" in the mktime line for further dates (but this will change daily) で( //Change the "1" in the mktime line for further dates (but this will change daily)
  4. $tomorrow = mktime ( 0 , 0 , 0 , date ( "m" ) , date ( "d" ) 1 , date ( "Y" ) ) ;
  5. echo "Tomorrow: " . date ( "mdY" , $tomorrow ) ; エコー echo "Tomorrow: " . date ( "mdY" , $tomorrow ) ;
  6. ?>

If you’re a skeptic about products like me, you likely wont buy that day either.私のような場合については、懐疑的な製品なら、その日のいずれかを購入する可能性に慣れた。 You’ll come back the next day to find you have yet another day to take advantage of savings.場合は、次の日に貯蓄を利用するにはまだ別の一日を過ごすに戻ってくるよ。 Then you think “Wait a minute”, and continually put off purchasing the product.次に、 " 1分"待てよ、と思う継続的に製品の購入を先送りにする。 If it is a business (Vs. an affiliate) doing this it is particularly poor marketing especially if you are offering a few days of a trial.場合には、ビジネス(対アフィリエイト)は特に裁判の場合は数日を提供しており、特に貧しい人々は、このマーケティングを行っている。 That potential buyer is even more likely to see this “special” offer changing since they will be returning to the site while trying your services.その潜在的な買い手はさらに、この"特別な"は、お客様のサービスを提供していますので、サイトに戻るため、変更を参照してくださいになりそうだ。 “Marketing Scam” they will think - and anything that causes a buyer to coin the word “scam” and your name in the same thought is not good for your business. "マーケティング詐欺"と思うだろう-と、硬貨と同じ考えでお客様の名前は、単語"詐欺"は買い手の原因は何もお客様のビジネスに良いではありません。

Now, what if they saw something like this: “Our special discount offer is extended until (Insert: date of the next Monday)” that would be much more believable, especially for a revisiting customer.さて、どうすればこのようなものを見た: "我々の特別割引を提供する(挿入:次の月曜日の日) "までは、はるかには、特に信用できるとなる顧客を再考延長されます。 On top of that, it will continue to say Mondays date until its Monday (and then it will revert to the next Monday) and that seems more more official, right!その上で、その日の月曜日まで月曜と言って(として、次の月曜日に戻ります)継続すると、より多くの関係者は、右よりだ! This is seldom used because its not as easy to automate as date 1=tomorrow as illustrated above (you can find that on just about any tutorial site or on php.net).理由はないとして日 1 =明日の図のとおり上記のように簡単に自動化するためにこのめったに(見つけることができます使用されている場合は、上の任意のチュートリアルサイトまたはphp.netにだけ) 。 Let me reiterate the fact, picking up a coding language comes in handy when earning money online because you can run things on autopilot.メインの事実をあらためて表明しようと、コーディングの言葉を覚えるの便利なオンラインのためにお金を稼ぐ自動操縦で物事を実行することができます。 Take a look back at my post last week: PHP & mySQL Can Automate & Increase Your Earnings for more info on that.先週は、私の記事でご覧ください: PHPの&のmySQLを自動化することはできます&ことに関する詳しい情報は、お客様の収益を向上させます。 But to continue on, this is what you want to use to specify next Monday and automate it:しかしを継続するために、この内容を次の月曜日を指定すると自動化を使用したいです:

  1. <?
  2. function next_week ( $target_week_day ) { $date = getDate ( ) ; //grabs current day
  3. $day = $date [ "mday" ] ;
  4. $week_day = $date [ "wday" ] ;
  5. $month = $date [ "mon" ] ;
  6. $year = $date [ "year" ] ;
  7. if ( $week_day <= $target_week_day ) { 場合 if ( $week_day <= $target_week_day ) {
  8. $days_left = $target_week_day - $week_day ; = $ $days_left = $target_week_day - $week_day ;
  9. } else {
  10. $days_left = 7 - ( $week_day - $target_week_day ) ; ys_left; $days_left = 7 - ( $week_day - $target_week_day ) ;
  11. }
  12. $next_week = getDate ( mktime ( 0 , 0 , 0 , $month , $day $days_left , $year ) ) ;
  13. $next_week_html = $next_week [ "month" ] . " " . $next_week [ "mday" ] . ", " . $next_week [ "year" ] ;
  14. return ( $next_week_html ) ;
  15. }
  16. // 0 = sunday   6 = saturday
  17. $date = next_week ( 1 ) ; // Targets Mondays
  18. echo "UPDATE: Due to demand, the author may raise the price again by " . $date . " - possibly sooner." ; "アップデートecho "UPDATE: Due to demand, the author may raise the price again by " . $date . " - possibly sooner." ;echo "UPDATE: Due to demand, the author may raise the price again by " . $date . " - possibly sooner." ; echo "UPDATE: Due to demand, the author may raise the price again by " . $date . " - possibly sooner." ;
  19. ?>

You can test them both if you want and see what your results are like.それらをテストすることができます両方の場合は、お客様の結果がどんな人かを参照してください。 In a split test I did 6 months ago I tried this theory out: The future date always resulted in more sales for the same product (130%-160% sales boost in some cases). ( 130 % -160 %の売上高はいくつかのケースで)高める分割テストでは私は6ヶ月前に私はこの理論を試してみたでした:未来の日付は、常に同じ製品の収益の増加につながった。 Depending on the services you are offering its possible a simple “tomorrow” date will work better, but for affiliate marketing, I love using the more advanced one and its a very minor tweak for some outstanding potential.その可能性は、単純な"明日"の日付より良い仕事をされますが、アフィリエイトマーケティングを提供しているため、私はいくつかのより高度な優れたポテンシャルとその一を微調整を使用して、非常に小さな愛のサービスにもよります。 Good luck, and comment with your results!運は、質の高いとの結果にコメントを!


1 Comment(s) On 1コメント(秒)

"Automate Product Urgency Dates To Increase Affiliate Profits" "自動化製品の緊急日付 " アフィリエイトの利益を増やすには
  1. MyAvatars 0.2 Kelvin Chan - Nov 1, 2007 ケルビンチャン -2 007年1 1月1日

    Yes … this urgency thing is not done very nicely by most sales letters as the prospective client knows it’s mostly *fake*.はい...この切迫ことは非常にきれいには、将来のクライアントとして最も売上高の手紙が行っていませんがほとんど*偽*.の知っている

    Will likely use a variant of the datefuture.txt script.可能性はdatefuture.txtスクリプトの変種が使用されます。 Thanks mate!ありがとうmate商品! =) = )



Leave A Comment:コメントを残す:

Comments RSS Feed コメントのRSSフィード

8 - 4 = 八から四=

Custom Theme by Rob Malon | Content & Design © 2008 - Rob Malon [dot] Com. カスタムテーマロブマロン|コンテンツ&デザイン© 2008 -ロブマロン[ドット]コム。 "));
"));