SlideShare una empresa de Scribd logo
1 de 24
Brought to you by TimBekkerdotcom http://www.TimBekker.com
1              From personal link to hoplink
Explanation:      In volume 1 I already revealed how to setup personal links by adding ?
x=uniqueid to the end of an URL


In this chapter I will tell you how to use the PHP ECHO function to go from your personal link
to your hoplink


This technique is perfect for if you don’t want your traffic to go instantly to your CB hoplink,
but rather want to send them to an “in between” page first. On this page you can for instance
capture the email or other info form your traffic first.


If you send traffic from your websites instantly to your hoplink you have no control over the
traffic anymore and you won’t be able to retrieve any precious information.


Let’s make this visual:




                        Brought to you by TimBekkerdotcom http://www.TimBekker.com
Solution


Create a separate (squeeze) page for which we create our own personalized links. IN this
example we will call this page http://www.page.com/squeeze.php


We create the personal links with as unique ID your websites, website1, website2, etc.
(remember the subid in Volume 1?)


Your personal links could look like


                       http://www.page.com/squeeze.php?x=website1
                       http://www.page.com/squeeze.php?x=website2




Link your different website to this page like:


                       Link website 1 to http://www.page.com/squeeze.php?x=website1
                       Link website 2 to http://www.page.com/squeeze.php?x=website2




                        Brought to you by TimBekkerdotcom http://www.TimBekker.com
Use the PHP ECHO function on the in between page to call the value after the “x” parameter,
in this example “website1” value from behind the personal link and print it in the hoplink:


http:// affiliatex. producty.hop.clickbank.net?tid=<?php echo str_replace('-', ' ', $_GET['x’])?>


Which will show up on the in between page as:


http:// affiliatex. producty.hop.clickbank.net?tid=website1


This will be the hoplink where you send your traffic to from the in between page; for instance
after the email subscription.


As you can see it will print the correct website in the as subid in the hoplink and you will be
able to track sales per website again in your CB account, but now with an “in between page”
where you can collect information




                       Brought to you by TimBekkerdotcom http://www.TimBekker.com
2                 From personal link to hoplink with
                     affiliate traffic

Explanation: In the last chapter I taught you how to go from a personal link to a hoplink
with an “in between page” and still managed to keep subid tracking per website.
This technique works with traffic coming from your own websites.


Of course it is much nicer if the influx of traffic is not just coming from your own website but
also from affiliates.


In this chapter I will tell you how to use the PHP ECHO function to go from your personal link
to your hoplink with affiliate traffic.


However please note that there are multiple variants of this technique. You could like the last
chapter use this technique while promoting an affiliate offer, though mostly when you work
with affiliates you do it with your own offer/product.


I will go through both options and I will also tell you how you will be able to see which affiliates
perform and which affiliates are sending BS traffic.


This technique is perfect for if you want to drive traffic to your CB hoplink(s) (whether that’s as
affiliate or seller), but you don’t have your own traffic generating websites.


Use other CB affiliates to drive traffic by giving them a commission per action.


                         Brought to you by TimBekkerdotcom http://www.TimBekker.com
Let’s make this visual:




Solution 1 Drive affiliate traffic for your own affiliate hoplink


Create a separate (squeeze) page for which we create our own personalized links. IN this
example we will call this page http://www.page.com/squueze.php


Create personal links for your affiliates with as unique ID their CB nicknames for instance
cbaff1, cbaff2 etc…


Your personal affiliate links could look like


                        http://www.page.com/squeeze.php?hop=cbaff1
                        http://www.page.com/squeeze.php?hop=cbaff2




I would in this case call the parameter hop since Clickbank also calls the affiliate parameter
hop (to overcome confusion).




                        Brought to you by TimBekkerdotcom http://www.TimBekker.com
Links your affiliates get could look like:


                      Affiliate 1 gets link: http://www.page.com/squeeze.php?
                 hop=cbaff1
                      Affiliate 2 gets link: http://www.page.com/squeeze.php?
                 hop=cbaff2




Use the PHP ECHO function on the in between page to call the value after the
“hop”parameter, in this example “cbaff1” value from behind the personal link and print it in the
hoplink:


http:// affiliatex. producty.hop.clickbank.net?tid=<?php echo str_replace('-', ' ', $_GET[‘hop’])?
                                                    >




                        Brought to you by TimBekkerdotcom http://www.TimBekker.com
Which will show up on the in between page as:


http:// affiliatex. producty.hop.clickbank.net?tid=cbaff1


This will be the hoplink where you send your traffic to from the in between page, for instance
after the email subscription.


As you can see it will print the correct affiliate in the as subid in the hoplink and you will be
able to track sales per affiliate again in your CB account, but now with an “in between page”
where you can collect information.


Since you can see through which affiliate the sale was made you could for instance offer a
commission per sale to your affiliates.


However I think that in this specific occasion it’s better to pay your affiliates per lead (email
signup), like $1.00.


You simply place an email form on your in between page and collect emails/build an email list
from you affiliate traffic before forwarding them to your hoplink.


For this you need to know of course which affiliate brought the lead. This works exactly the
same.




                        Brought to you by TimBekkerdotcom http://www.TimBekker.com
Track affiliates leads on in between page




This lead tracking technique per affiliate works with every autoresponder software, whether
that’s Aweber, GetResponse, iContact or any other.


All email form codes look a little bit different but they work the same.


The code exists of fields. The exact number of fields can be specified by you in your email
account. The most basic email forms just have an email and name field, but some bigger
ones may also have phone and address fields.


For this example I will use a very simple email code with just an email and name field.


      <form action="http://cm.cypra.com/t/r/s/zljod/" method="post"
       id="subForm">
      <input class="txt" id="name" name="cm-name" value="your name"
       type="text" />
      <input class="txt2" id="zljod-zljod" name="cm-zljod-zljod" value="your
       email" type="text" />
      <input class="sbm" name="submit" value="" type="submit" /></form>
      </div>




                       Brought to you by TimBekkerdotcom http://www.TimBekker.com
What will look like




Now to track the leads per affiliate simply add one custom field in your email account that you
can call “affid”.


Copy and paste the email form code on your “in between page” but make the 3 rd new field, the
“affid” field, a “hidden” field. This way it is still there, but your traffic can’t see it.


        <form action="http://cm.cypra.com/t/r/s/zljod/" method="post"
         id="subForm">
        <input class="txt" id="name" name="cm-name" value="your name"
         type="text" />
        <input class="txt2" id="zljod-zljod" name="cm-zljod-zljod"
         value="your email" type="text" />
        <input class="hidden" id="affid" name="cm-f-xukikk" value="print
         affiliate id" type="hidden" />
        <input class="sbm" name="submit" value="" type="submit" /></form>
        </div>




                          Brought to you by TimBekkerdotcom http://www.TimBekker.com
That’s exactly what we want because this field isn’t supposed to be filled in by your traffic,
because we are going to auto fill this field with the affiliate id of the affiliate that brought the
visitor.
Your page would still look like this for your traffic:




Now use the PHP ECHO function again on the in between page to call the value after the
“hop” parameter, in this example “cbaff1” value from behind the personal link and print it as
the value of the custom field “affid”:

       <form action="http://cm.cypra.com/t/r/s/zljod/" method="post"
        id="subForm">
       <input class="txt" id="name" name="cm-name" value="your name"
        type="text" />
       <input class="txt2" id="zljod-zljod" name="cm-zljod-zljod"
        value="your email" type="text" />
       <input class="hidden" id="affid" name="cm-f-xukikk" value="<?php echo
        str_replace('-', ' ', $_GET[‘hop’])?>" type="hidden" />
       <input class="sbm" name="submit" value="" type="submit" /></form>
       </div>




                         Brought to you by TimBekkerdotcom http://www.TimBekker.com
Which will show up on the in between page as:


   <form action="http://cm.cypra.com/t/r/s/zljod/" method="post"
    id="subForm">
   <input class="txt" id="name" name="cm-name" value="your name"
    type="text" />
   <input class="txt2" id="zljod-zljod" name="cm-zljod-zljod"
    value="your email" type="text" />
   <input class="hidden" id="affid" name="cm-f-xukikk" value="cbaff1"
    type="hidden" />
   <input class="sbm" name="submit" value="" type="submit" /></form>
   </div>




Ones the visitor signs up through the email form your autoreponder account will store this
extra affid value with the visitors email and name.




                       Brought to you by TimBekkerdotcom http://www.TimBekker.com
Now you have:
    a) Captured a lead before sending the traffic to your hoplink

    b) You used affiliate traffic for it

    c) You know which affiliates sent the lead

    d) If the guy also buys a product after he signed up through the email form you also know
           which affiliate made you’re the sale (refer to the first part of this chapter)

This is all really important information.


Since you can track the leads back per affiliate you can pay affiliates per lead, like $1.00.
And since you also can track which affiliates make the actual CB sales at the end you know
exactly which affiliates bring you quality converting traffic and which affiliates bring you BS
traffic.


Affiliates that don’t make any sales for you at the end through your hoplink you have (of
course) to ban ASAP from paying them $1.00 per lead. They will just cost you money.
The cool part is that the entire technique is 100% free. So no expensive costs to buy lead
tracking whatsoever.


Solution 2 Drive affiliate traffic for your own CB product


This technique works exactly the same as solution 1.


The only difference is that if you are driving affiliate traffic for your own product you could also
offer the affiliate a percentage of the CB sale on top of the commission you pay per lead.


Create a separate (squeeze) page for which we create our own personalized links. IN this
example we will call this page http://www.page.com/squueze.php

                            Brought to you by TimBekkerdotcom http://www.TimBekker.com
Brought to you by TimBekkerdotcom http://www.TimBekker.com
Create personal links for your affiliates with as unique ID their CB nicknames for instance
cbaff1, cbaff2 etc..


Your personal affiliate links could look like


                        http://www.page.com/squeeze.php?hop=cbaff1
                        http://www.page.com/squeeze.php?hop=cbaff2



I would in this case call the parameter hop since Clickbank also calls the affiliate parameter
hop. (to overcome confusion)


Links your affiliates get could look like:


                      Affiliate 1 gets link http://www.page.com/squeeze.php?
                 hop=cbaff1
                      Affiliate 2 gets link http://www.page.com/squeeze.php?
                 hop=cbaff2




                        Brought to you by TimBekkerdotcom http://www.TimBekker.com
Use the PHP ECHO function on the in between page to call the value after the “hop”
parameter, in this example “cbaff1” value from behind the personal link and print it in the
hoplink on the spot of the affiliateCBnickname:


http:// <?php echo str_replace('-', ' ', $_GET[‘hop’])?>.producty.hop.clickbank.net?tid=subid
Which will show up on the in between page as:


http:// cbaff1.producty.hop.clickbank.net?tid=subid


This will be the hoplink where you send your traffic to from the in between page, for instance
after the email subscription.


As you can see it will print the correct affiliate in the as affiliate in the hoplink and you will be
able to reward the right affiliate with the affiliate commission if a sale appears for your product,
with an “in between page” where you can collect information.


Of course the lead part, where you track which affiliate brought the lead (email subscription)
works exactly the same as in Solution 1.

                        Brought to you by TimBekkerdotcom http://www.TimBekker.com
Using CBLeads To Gain Afiliates

If you don’t know how or where to get affiliates that can drive traffic you could for instance
have a look at our cbleads.com platform where at the moment over 23,000 affiliates are
registered.


We offer multiple options to recruit affiliates, under which paid mailings to our CbLeads
network list.


And if this entire lead technique goes beyond your skills…CbLeads can track leads for your
Clickbank products: http://www.cbleads.com




                       Brought to you by TimBekkerdotcom http://www.TimBekker.com
3                   Creating a 2nd tier with CB to
                       stimulate affiliate signups
Explanation: It’s really an easy way to track 2nd Tiers yourself for a Clickbank Product that
actually doesn’t have a 2nd tier.


For those that don’t know what a 2nd Tier Program is…


It is nothing more than rewarding a partner for referring another partner. A normal affiliate
program rewards a partner for making a sale to a customer. Imagine there are 2 partners,
partner A and partner B. A 2 tier program rewards partner A for referring partner B with a % of
partner B’s sales volume or just a fixed fee per partner signup.



Why should you have a 2nd Tier Program?
By adding a 2nd tier you make it attractive for partners to refer other partners.


Results: Your number of partners (the number of promoters for your product(s)) increases big
time


Results: your sales grow big time! (and that’s what everybody wants RIGHT?)
Really guys, adding a 2nd Tier can grow your partner database exponentially. Do NOT
underestimate this. And the fun thing is, I don’t have to teach you anything new because
adding a 2nd TIER works exactly the same way as lead tracking.


Adding a 2nd Tier IS a form of lead tracking…
                        Brought to you by TimBekkerdotcom http://www.TimBekker.com
Where we stored the partner/Clickbank ID from person 1 in the first lead tracking technique
with the sign up information of the new subscriber (person 2) we now have to store the
Clickbank ID from partner 1 with the signup info of partner 2 (the new partner that signed up)


IMPLEMENTATION:


   ⇒ Simply use the side technique “creating a personalized link” to create the JV/partner
      referral links. These are the links you give to your partners to get them to refer other
      partners.


      Example:


      If your partners signup page is located at



                           http://www.TimBekker.com/partners.php



      Then you can create a partner referral link by adding a parameter + a UNIQUE
      characteristic (the partner affiliateCBnickname).


      If we call the parameter “hop” then the partner referral link will simply look like:


           http://www.TimBekker.com/partners.php?hop=affid


      You will give this link to affiliates so they can refer other partners. It’s that simple!


   ⇒ Now just remember all the steps from the lead tracking technique and the ECHO
      Function using the Clickbank ID.



                       Brought to you by TimBekkerdotcom http://www.TimBekker.com
⇒ Place a partner signup form on partner sign up page with one extra field. Also ask for
   the Clickbank Id of the partner that signs up.




  <form action="http://cm.cypra.com/t/r/s/zljod/" method="post"
   id="subForm">
  <input class="txt" id="name" name="cm-name" value="your name"
   type="text" />
  <input class="txt2" id="zljod-zljod" name="cm-zljod-zljod"
   value="your email" type="text" />
  <input class="txt" id="cbid" name="cm-cbid" value="your Clickbank id"
   type="text" />
  <input class="hidden" id="affid" name="cm-f-xukikk" value="<?php echo
   str_replace('-', ' ', $_GET[‘hop’])?>" type="hidden" />
  <input class="sbm" name="submit" value="" type="submit" /></form>
  </div>


   When partner 2 signs up, the partner ID from partner 1 gets sent with the signup
   information of partner 2 to your autoresponder account and again we can see who
   referred partner 2 through the value in the “affid” field.


   Assume that affiliate with the CB Nickname “ethyx456” is recruiting new partners. Then
   the value for the “affid” field would show “ethyx456”
   <form action="http://cm.cypra.com/t/r/s/zljod/" method="post"
    id="subForm">
   <input class="txt" id="name" name="cm-name" value="your name"
    type="text" />
   <input class="txt2" id="zljod-zljod" name="cm-zljod-zljod"
    value="your email" type="text" />
   <input class="hidden" id="affid" name="cm-f-xukikk" value="ethyx456"
    type="hidden" />
   <input class="sbm" name="submit" value="" type="submit" /></form>
   </div>

   Remember our example in the first lead tracking technique. Now the affid field shows
   the Clickbank nickname of the partner that referred the new partner:

                    Brought to you by TimBekkerdotcom http://www.TimBekker.com
•


In the partner list the new partner signup record shows us the name of the new partner
Carl Wolf with his own Clickbank ID and the Clickbank nickname of his referrer
“ethyx456”.


If you now do a search for the affid “ethyx456” in the partner list you will find the name
of the referrer and the circle is round 
You could offer an affiliate that refers other affiliates for instance 10% of their sales.




                 Brought to you by TimBekkerdotcom http://www.TimBekker.com
4         Creating a 2nd Tiers ALL-IN-ONE Link
Explanation: you know the phrase: good, better, best (in this scenario we’ll call it “best
solution”). Well, I got one for you. Setting up a 2 tier program with a separate partner referral
works great, but I have one that’s even better. The All-IN-One partner link.


Track leads, sales and partner signups using the same link. This overcomes
misunderstandings about which link to use. It just works much more efficiently!


However>>


The affiliate/partner link doesn’t redirect to the partner signup page, but to the product sales
page.

 How in the world do we echo the Clickbank ID of partner 1 in the “affid” field when partner 2
 signs up on the partner page IF the affiliate link doesn’t take us to the partner signup page?


That’s a good question. Let’s make this visual!




                       Brought to you by TimBekkerdotcom http://www.TimBekker.com
Implementatation:
⇒ The hoplink of partner 1 takes partner 2 (the new partner that wants to signup) to the
   main site. The main site shows the “hop” value.




                   Brought to you by TimBekkerdotcom http://www.TimBekker.com
Brought to you by TimBekkerdotcom http://www.TimBekker.com

Más contenido relacionado

La actualidad más candente

10 Things You're Not Doing [IBM Lotus Notes Domino Application Development]
10 Things You're Not Doing [IBM Lotus Notes Domino Application Development]10 Things You're Not Doing [IBM Lotus Notes Domino Application Development]
10 Things You're Not Doing [IBM Lotus Notes Domino Application Development]Chris Toohey
 
Building Secure Twitter Apps
Building Secure Twitter AppsBuilding Secure Twitter Apps
Building Secure Twitter AppsDamon Cortesi
 
The Identity Problem of the Web and how to solve it
The Identity Problem of the Web and how to solve itThe Identity Problem of the Web and how to solve it
The Identity Problem of the Web and how to solve itBastian Hofmann
 
How not to suck at Cyber Security
How not to suck at Cyber SecurityHow not to suck at Cyber Security
How not to suck at Cyber SecurityChris Watts
 
Best practices in museum search
 Best practices in museum search Best practices in museum search
Best practices in museum searchNate Solas
 
In some simple steps, your site can stand out from the rest. Here's how...
In some simple steps, your site can stand out from the rest. Here's how... In some simple steps, your site can stand out from the rest. Here's how...
In some simple steps, your site can stand out from the rest. Here's how... British Council
 
Punch it Up with HTML and CSS
Punch it Up with HTML and CSSPunch it Up with HTML and CSS
Punch it Up with HTML and CSSmtlgirlgeeks
 
More Secrets of JavaScript Libraries
More Secrets of JavaScript LibrariesMore Secrets of JavaScript Libraries
More Secrets of JavaScript Librariesjeresig
 
SEO and Social Media for Multilingual and Multidevice Sites
SEO and Social Media for Multilingual and Multidevice SitesSEO and Social Media for Multilingual and Multidevice Sites
SEO and Social Media for Multilingual and Multidevice Sitesluckyboost
 
LinkedIn Platform at LeWeb 2010
LinkedIn Platform at LeWeb 2010LinkedIn Platform at LeWeb 2010
LinkedIn Platform at LeWeb 2010Adam Trachtenberg
 

La actualidad más candente (12)

10 Things You're Not Doing [IBM Lotus Notes Domino Application Development]
10 Things You're Not Doing [IBM Lotus Notes Domino Application Development]10 Things You're Not Doing [IBM Lotus Notes Domino Application Development]
10 Things You're Not Doing [IBM Lotus Notes Domino Application Development]
 
Building Secure Twitter Apps
Building Secure Twitter AppsBuilding Secure Twitter Apps
Building Secure Twitter Apps
 
The Identity Problem of the Web and how to solve it
The Identity Problem of the Web and how to solve itThe Identity Problem of the Web and how to solve it
The Identity Problem of the Web and how to solve it
 
How not to suck at Cyber Security
How not to suck at Cyber SecurityHow not to suck at Cyber Security
How not to suck at Cyber Security
 
YQL talk at OHD Jakarta
YQL talk at OHD JakartaYQL talk at OHD Jakarta
YQL talk at OHD Jakarta
 
Best practices in museum search
 Best practices in museum search Best practices in museum search
Best practices in museum search
 
Intro to Ruby
Intro to RubyIntro to Ruby
Intro to Ruby
 
In some simple steps, your site can stand out from the rest. Here's how...
In some simple steps, your site can stand out from the rest. Here's how... In some simple steps, your site can stand out from the rest. Here's how...
In some simple steps, your site can stand out from the rest. Here's how...
 
Punch it Up with HTML and CSS
Punch it Up with HTML and CSSPunch it Up with HTML and CSS
Punch it Up with HTML and CSS
 
More Secrets of JavaScript Libraries
More Secrets of JavaScript LibrariesMore Secrets of JavaScript Libraries
More Secrets of JavaScript Libraries
 
SEO and Social Media for Multilingual and Multidevice Sites
SEO and Social Media for Multilingual and Multidevice SitesSEO and Social Media for Multilingual and Multidevice Sites
SEO and Social Media for Multilingual and Multidevice Sites
 
LinkedIn Platform at LeWeb 2010
LinkedIn Platform at LeWeb 2010LinkedIn Platform at LeWeb 2010
LinkedIn Platform at LeWeb 2010
 

Destacado

TFM "Cómo explicar la crisis económica actual de España a alumnos de Institut...
TFM "Cómo explicar la crisis económica actual de España a alumnos de Institut...TFM "Cómo explicar la crisis económica actual de España a alumnos de Institut...
TFM "Cómo explicar la crisis económica actual de España a alumnos de Institut...Francisco Flores
 
Beschaffung, handel und konsum illegaler drogen im strafvollzug 00012025
Beschaffung, handel und konsum illegaler drogen im strafvollzug 00012025Beschaffung, handel und konsum illegaler drogen im strafvollzug 00012025
Beschaffung, handel und konsum illegaler drogen im strafvollzug 00012025docacid
 
InnoSIB Seguridad de la informacion. Consultoría
InnoSIB Seguridad de la informacion. ConsultoríaInnoSIB Seguridad de la informacion. Consultoría
InnoSIB Seguridad de la informacion. ConsultoríaInnoSIB
 
2015 Equal Weighting and Other Forms of Size Tilting
2015 Equal Weighting and Other Forms of Size Tilting2015 Equal Weighting and Other Forms of Size Tilting
2015 Equal Weighting and Other Forms of Size TiltingFrederic Jamet
 
Ficha de actividad miriam cintas
Ficha de actividad miriam cintasFicha de actividad miriam cintas
Ficha de actividad miriam cintasnelvinmax
 
Tendencias informáticas y sus incidencias
Tendencias informáticas y sus incidencias Tendencias informáticas y sus incidencias
Tendencias informáticas y sus incidencias SergioMolea
 
Asdp ii bp wb presentation 29 jan 2015
Asdp ii bp wb presentation 29 jan 2015Asdp ii bp wb presentation 29 jan 2015
Asdp ii bp wb presentation 29 jan 2015Stefan Siewert
 
Accident April Garanties
Accident April GarantiesAccident April Garanties
Accident April GarantiesADPAssurances
 

Destacado (12)

TFM "Cómo explicar la crisis económica actual de España a alumnos de Institut...
TFM "Cómo explicar la crisis económica actual de España a alumnos de Institut...TFM "Cómo explicar la crisis económica actual de España a alumnos de Institut...
TFM "Cómo explicar la crisis económica actual de España a alumnos de Institut...
 
Workflow Foundation 4.5
Workflow Foundation 4.5Workflow Foundation 4.5
Workflow Foundation 4.5
 
Tendencias ti
Tendencias tiTendencias ti
Tendencias ti
 
Beschaffung, handel und konsum illegaler drogen im strafvollzug 00012025
Beschaffung, handel und konsum illegaler drogen im strafvollzug 00012025Beschaffung, handel und konsum illegaler drogen im strafvollzug 00012025
Beschaffung, handel und konsum illegaler drogen im strafvollzug 00012025
 
April 2013 - The Candle
April 2013 - The CandleApril 2013 - The Candle
April 2013 - The Candle
 
InnoSIB Seguridad de la informacion. Consultoría
InnoSIB Seguridad de la informacion. ConsultoríaInnoSIB Seguridad de la informacion. Consultoría
InnoSIB Seguridad de la informacion. Consultoría
 
2015 Equal Weighting and Other Forms of Size Tilting
2015 Equal Weighting and Other Forms of Size Tilting2015 Equal Weighting and Other Forms of Size Tilting
2015 Equal Weighting and Other Forms of Size Tilting
 
Ficha de actividad miriam cintas
Ficha de actividad miriam cintasFicha de actividad miriam cintas
Ficha de actividad miriam cintas
 
Tendencias informáticas y sus incidencias
Tendencias informáticas y sus incidencias Tendencias informáticas y sus incidencias
Tendencias informáticas y sus incidencias
 
Asdp ii bp wb presentation 29 jan 2015
Asdp ii bp wb presentation 29 jan 2015Asdp ii bp wb presentation 29 jan 2015
Asdp ii bp wb presentation 29 jan 2015
 
Carhuamayo 30 de agosto del 2011
Carhuamayo 30 de agosto del 2011Carhuamayo 30 de agosto del 2011
Carhuamayo 30 de agosto del 2011
 
Accident April Garanties
Accident April GarantiesAccident April Garanties
Accident April Garanties
 

Similar a Cbcode volume2

Hello I a having an issue with the code written in this ass.pdf
Hello I a having an issue with the code written in this ass.pdfHello I a having an issue with the code written in this ass.pdf
Hello I a having an issue with the code written in this ass.pdfabsgroup9793
 
THE ULTIMATE BLACKHAT CASH MACHINE - make money online
THE ULTIMATE BLACKHAT CASH MACHINE - make money onlineTHE ULTIMATE BLACKHAT CASH MACHINE - make money online
THE ULTIMATE BLACKHAT CASH MACHINE - make money onlineEdward806784
 
PHP and MySQL : Server Side Scripting For Web Development
PHP and MySQL : Server Side Scripting For Web DevelopmentPHP and MySQL : Server Side Scripting For Web Development
PHP and MySQL : Server Side Scripting For Web DevelopmentEdureka!
 
STOP HACKERS & THIEVES
STOP HACKERS & THIEVESSTOP HACKERS & THIEVES
STOP HACKERS & THIEVESBjon Agera
 
How to Get Money Fast - Make Money Blogging!
How to Get Money Fast - Make Money Blogging!How to Get Money Fast - Make Money Blogging!
How to Get Money Fast - Make Money Blogging!41242serv
 
How to Get Money Fast - Make Money Blogging!
How to Get Money Fast - Make Money Blogging!How to Get Money Fast - Make Money Blogging!
How to Get Money Fast - Make Money Blogging!41242serv
 
Affiliate Management Platform
Affiliate Management  Platform Affiliate Management  Platform
Affiliate Management Platform Sudhi Ranjan Das
 
Crud tutorial en
Crud tutorial enCrud tutorial en
Crud tutorial enforkgrown
 
Sperimentazioni di Tecnologie e Comunicazioni Multimediali: Lezione 5
Sperimentazioni di Tecnologie e Comunicazioni Multimediali: Lezione 5Sperimentazioni di Tecnologie e Comunicazioni Multimediali: Lezione 5
Sperimentazioni di Tecnologie e Comunicazioni Multimediali: Lezione 5Salvatore Iaconesi
 
Chatting with HIpChat: APIs 101
Chatting with HIpChat: APIs 101Chatting with HIpChat: APIs 101
Chatting with HIpChat: APIs 101colleenfry
 
HTML::FormFu talk for Sydney PM
HTML::FormFu talk for Sydney PMHTML::FormFu talk for Sydney PM
HTML::FormFu talk for Sydney PMDean Hamstead
 
Html Server Anchor Control VB
Html Server Anchor Control VBHtml Server Anchor Control VB
Html Server Anchor Control VBsunmitraeducation
 
URL Hacking 101: An Easy Way to Streamline Processes in Salesforce
URL Hacking 101: An Easy Way to Streamline Processes in Salesforce URL Hacking 101: An Easy Way to Streamline Processes in Salesforce
URL Hacking 101: An Easy Way to Streamline Processes in Salesforce Configero
 
How to run a Bitcoin or altcoin cryptocurrency faucet on WordPress
How to run a Bitcoin or altcoin cryptocurrency faucet on WordPressHow to run a Bitcoin or altcoin cryptocurrency faucet on WordPress
How to run a Bitcoin or altcoin cryptocurrency faucet on WordPressdashed-slug.net
 
How to implement email functionalities with Mailjet api
How to implement email functionalities with Mailjet apiHow to implement email functionalities with Mailjet api
How to implement email functionalities with Mailjet apiE Boisgontier
 
Tutorial and Review of SENuke XCR - Learn to Build High Quality Tier 1 Links
Tutorial and Review of SENuke XCR - Learn to Build High Quality Tier 1 LinksTutorial and Review of SENuke XCR - Learn to Build High Quality Tier 1 Links
Tutorial and Review of SENuke XCR - Learn to Build High Quality Tier 1 LinksMatthew Woodward
 
Easy Autopilot
Easy AutopilotEasy Autopilot
Easy AutopilotDayz Gee
 

Similar a Cbcode volume2 (20)

Hello I a having an issue with the code written in this ass.pdf
Hello I a having an issue with the code written in this ass.pdfHello I a having an issue with the code written in this ass.pdf
Hello I a having an issue with the code written in this ass.pdf
 
THE ULTIMATE BLACKHAT CASH MACHINE - make money online
THE ULTIMATE BLACKHAT CASH MACHINE - make money onlineTHE ULTIMATE BLACKHAT CASH MACHINE - make money online
THE ULTIMATE BLACKHAT CASH MACHINE - make money online
 
PHP and MySQL : Server Side Scripting For Web Development
PHP and MySQL : Server Side Scripting For Web DevelopmentPHP and MySQL : Server Side Scripting For Web Development
PHP and MySQL : Server Side Scripting For Web Development
 
STOP HACKERS & THIEVES
STOP HACKERS & THIEVESSTOP HACKERS & THIEVES
STOP HACKERS & THIEVES
 
How to Get Money Fast - Make Money Blogging!
How to Get Money Fast - Make Money Blogging!How to Get Money Fast - Make Money Blogging!
How to Get Money Fast - Make Money Blogging!
 
How to Get Money Fast - Make Money Blogging!
How to Get Money Fast - Make Money Blogging!How to Get Money Fast - Make Money Blogging!
How to Get Money Fast - Make Money Blogging!
 
Affiliate Management Platform
Affiliate Management  Platform Affiliate Management  Platform
Affiliate Management Platform
 
Crud tutorial en
Crud tutorial enCrud tutorial en
Crud tutorial en
 
Sperimentazioni di Tecnologie e Comunicazioni Multimediali: Lezione 5
Sperimentazioni di Tecnologie e Comunicazioni Multimediali: Lezione 5Sperimentazioni di Tecnologie e Comunicazioni Multimediali: Lezione 5
Sperimentazioni di Tecnologie e Comunicazioni Multimediali: Lezione 5
 
BYLWE-4653
BYLWE-4653BYLWE-4653
BYLWE-4653
 
Bylwe 4653
Bylwe 4653Bylwe 4653
Bylwe 4653
 
Chatting with HIpChat: APIs 101
Chatting with HIpChat: APIs 101Chatting with HIpChat: APIs 101
Chatting with HIpChat: APIs 101
 
HTML::FormFu talk for Sydney PM
HTML::FormFu talk for Sydney PMHTML::FormFu talk for Sydney PM
HTML::FormFu talk for Sydney PM
 
Print function in PHP
Print function in PHPPrint function in PHP
Print function in PHP
 
Html Server Anchor Control VB
Html Server Anchor Control VBHtml Server Anchor Control VB
Html Server Anchor Control VB
 
URL Hacking 101: An Easy Way to Streamline Processes in Salesforce
URL Hacking 101: An Easy Way to Streamline Processes in Salesforce URL Hacking 101: An Easy Way to Streamline Processes in Salesforce
URL Hacking 101: An Easy Way to Streamline Processes in Salesforce
 
How to run a Bitcoin or altcoin cryptocurrency faucet on WordPress
How to run a Bitcoin or altcoin cryptocurrency faucet on WordPressHow to run a Bitcoin or altcoin cryptocurrency faucet on WordPress
How to run a Bitcoin or altcoin cryptocurrency faucet on WordPress
 
How to implement email functionalities with Mailjet api
How to implement email functionalities with Mailjet apiHow to implement email functionalities with Mailjet api
How to implement email functionalities with Mailjet api
 
Tutorial and Review of SENuke XCR - Learn to Build High Quality Tier 1 Links
Tutorial and Review of SENuke XCR - Learn to Build High Quality Tier 1 LinksTutorial and Review of SENuke XCR - Learn to Build High Quality Tier 1 Links
Tutorial and Review of SENuke XCR - Learn to Build High Quality Tier 1 Links
 
Easy Autopilot
Easy AutopilotEasy Autopilot
Easy Autopilot
 

Cbcode volume2

  • 1. Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 2. 1 From personal link to hoplink Explanation: In volume 1 I already revealed how to setup personal links by adding ? x=uniqueid to the end of an URL In this chapter I will tell you how to use the PHP ECHO function to go from your personal link to your hoplink This technique is perfect for if you don’t want your traffic to go instantly to your CB hoplink, but rather want to send them to an “in between” page first. On this page you can for instance capture the email or other info form your traffic first. If you send traffic from your websites instantly to your hoplink you have no control over the traffic anymore and you won’t be able to retrieve any precious information. Let’s make this visual: Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 3. Solution Create a separate (squeeze) page for which we create our own personalized links. IN this example we will call this page http://www.page.com/squeeze.php We create the personal links with as unique ID your websites, website1, website2, etc. (remember the subid in Volume 1?) Your personal links could look like http://www.page.com/squeeze.php?x=website1 http://www.page.com/squeeze.php?x=website2 Link your different website to this page like: Link website 1 to http://www.page.com/squeeze.php?x=website1 Link website 2 to http://www.page.com/squeeze.php?x=website2 Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 4. Use the PHP ECHO function on the in between page to call the value after the “x” parameter, in this example “website1” value from behind the personal link and print it in the hoplink: http:// affiliatex. producty.hop.clickbank.net?tid=<?php echo str_replace('-', ' ', $_GET['x’])?> Which will show up on the in between page as: http:// affiliatex. producty.hop.clickbank.net?tid=website1 This will be the hoplink where you send your traffic to from the in between page; for instance after the email subscription. As you can see it will print the correct website in the as subid in the hoplink and you will be able to track sales per website again in your CB account, but now with an “in between page” where you can collect information Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 5. 2 From personal link to hoplink with affiliate traffic Explanation: In the last chapter I taught you how to go from a personal link to a hoplink with an “in between page” and still managed to keep subid tracking per website. This technique works with traffic coming from your own websites. Of course it is much nicer if the influx of traffic is not just coming from your own website but also from affiliates. In this chapter I will tell you how to use the PHP ECHO function to go from your personal link to your hoplink with affiliate traffic. However please note that there are multiple variants of this technique. You could like the last chapter use this technique while promoting an affiliate offer, though mostly when you work with affiliates you do it with your own offer/product. I will go through both options and I will also tell you how you will be able to see which affiliates perform and which affiliates are sending BS traffic. This technique is perfect for if you want to drive traffic to your CB hoplink(s) (whether that’s as affiliate or seller), but you don’t have your own traffic generating websites. Use other CB affiliates to drive traffic by giving them a commission per action. Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 6. Let’s make this visual: Solution 1 Drive affiliate traffic for your own affiliate hoplink Create a separate (squeeze) page for which we create our own personalized links. IN this example we will call this page http://www.page.com/squueze.php Create personal links for your affiliates with as unique ID their CB nicknames for instance cbaff1, cbaff2 etc… Your personal affiliate links could look like http://www.page.com/squeeze.php?hop=cbaff1 http://www.page.com/squeeze.php?hop=cbaff2 I would in this case call the parameter hop since Clickbank also calls the affiliate parameter hop (to overcome confusion). Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 7. Links your affiliates get could look like: Affiliate 1 gets link: http://www.page.com/squeeze.php? hop=cbaff1 Affiliate 2 gets link: http://www.page.com/squeeze.php? hop=cbaff2 Use the PHP ECHO function on the in between page to call the value after the “hop”parameter, in this example “cbaff1” value from behind the personal link and print it in the hoplink: http:// affiliatex. producty.hop.clickbank.net?tid=<?php echo str_replace('-', ' ', $_GET[‘hop’])? > Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 8. Which will show up on the in between page as: http:// affiliatex. producty.hop.clickbank.net?tid=cbaff1 This will be the hoplink where you send your traffic to from the in between page, for instance after the email subscription. As you can see it will print the correct affiliate in the as subid in the hoplink and you will be able to track sales per affiliate again in your CB account, but now with an “in between page” where you can collect information. Since you can see through which affiliate the sale was made you could for instance offer a commission per sale to your affiliates. However I think that in this specific occasion it’s better to pay your affiliates per lead (email signup), like $1.00. You simply place an email form on your in between page and collect emails/build an email list from you affiliate traffic before forwarding them to your hoplink. For this you need to know of course which affiliate brought the lead. This works exactly the same. Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 9. Track affiliates leads on in between page This lead tracking technique per affiliate works with every autoresponder software, whether that’s Aweber, GetResponse, iContact or any other. All email form codes look a little bit different but they work the same. The code exists of fields. The exact number of fields can be specified by you in your email account. The most basic email forms just have an email and name field, but some bigger ones may also have phone and address fields. For this example I will use a very simple email code with just an email and name field. <form action="http://cm.cypra.com/t/r/s/zljod/" method="post" id="subForm"> <input class="txt" id="name" name="cm-name" value="your name" type="text" /> <input class="txt2" id="zljod-zljod" name="cm-zljod-zljod" value="your email" type="text" /> <input class="sbm" name="submit" value="" type="submit" /></form> </div> Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 10. What will look like Now to track the leads per affiliate simply add one custom field in your email account that you can call “affid”. Copy and paste the email form code on your “in between page” but make the 3 rd new field, the “affid” field, a “hidden” field. This way it is still there, but your traffic can’t see it. <form action="http://cm.cypra.com/t/r/s/zljod/" method="post" id="subForm"> <input class="txt" id="name" name="cm-name" value="your name" type="text" /> <input class="txt2" id="zljod-zljod" name="cm-zljod-zljod" value="your email" type="text" /> <input class="hidden" id="affid" name="cm-f-xukikk" value="print affiliate id" type="hidden" /> <input class="sbm" name="submit" value="" type="submit" /></form> </div> Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 11. That’s exactly what we want because this field isn’t supposed to be filled in by your traffic, because we are going to auto fill this field with the affiliate id of the affiliate that brought the visitor. Your page would still look like this for your traffic: Now use the PHP ECHO function again on the in between page to call the value after the “hop” parameter, in this example “cbaff1” value from behind the personal link and print it as the value of the custom field “affid”: <form action="http://cm.cypra.com/t/r/s/zljod/" method="post" id="subForm"> <input class="txt" id="name" name="cm-name" value="your name" type="text" /> <input class="txt2" id="zljod-zljod" name="cm-zljod-zljod" value="your email" type="text" /> <input class="hidden" id="affid" name="cm-f-xukikk" value="<?php echo str_replace('-', ' ', $_GET[‘hop’])?>" type="hidden" /> <input class="sbm" name="submit" value="" type="submit" /></form> </div> Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 12. Which will show up on the in between page as: <form action="http://cm.cypra.com/t/r/s/zljod/" method="post" id="subForm"> <input class="txt" id="name" name="cm-name" value="your name" type="text" /> <input class="txt2" id="zljod-zljod" name="cm-zljod-zljod" value="your email" type="text" /> <input class="hidden" id="affid" name="cm-f-xukikk" value="cbaff1" type="hidden" /> <input class="sbm" name="submit" value="" type="submit" /></form> </div> Ones the visitor signs up through the email form your autoreponder account will store this extra affid value with the visitors email and name. Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 13. Now you have: a) Captured a lead before sending the traffic to your hoplink b) You used affiliate traffic for it c) You know which affiliates sent the lead d) If the guy also buys a product after he signed up through the email form you also know which affiliate made you’re the sale (refer to the first part of this chapter) This is all really important information. Since you can track the leads back per affiliate you can pay affiliates per lead, like $1.00. And since you also can track which affiliates make the actual CB sales at the end you know exactly which affiliates bring you quality converting traffic and which affiliates bring you BS traffic. Affiliates that don’t make any sales for you at the end through your hoplink you have (of course) to ban ASAP from paying them $1.00 per lead. They will just cost you money. The cool part is that the entire technique is 100% free. So no expensive costs to buy lead tracking whatsoever. Solution 2 Drive affiliate traffic for your own CB product This technique works exactly the same as solution 1. The only difference is that if you are driving affiliate traffic for your own product you could also offer the affiliate a percentage of the CB sale on top of the commission you pay per lead. Create a separate (squeeze) page for which we create our own personalized links. IN this example we will call this page http://www.page.com/squueze.php Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 14. Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 15. Create personal links for your affiliates with as unique ID their CB nicknames for instance cbaff1, cbaff2 etc.. Your personal affiliate links could look like http://www.page.com/squeeze.php?hop=cbaff1 http://www.page.com/squeeze.php?hop=cbaff2 I would in this case call the parameter hop since Clickbank also calls the affiliate parameter hop. (to overcome confusion) Links your affiliates get could look like: Affiliate 1 gets link http://www.page.com/squeeze.php? hop=cbaff1 Affiliate 2 gets link http://www.page.com/squeeze.php? hop=cbaff2 Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 16. Use the PHP ECHO function on the in between page to call the value after the “hop” parameter, in this example “cbaff1” value from behind the personal link and print it in the hoplink on the spot of the affiliateCBnickname: http:// <?php echo str_replace('-', ' ', $_GET[‘hop’])?>.producty.hop.clickbank.net?tid=subid Which will show up on the in between page as: http:// cbaff1.producty.hop.clickbank.net?tid=subid This will be the hoplink where you send your traffic to from the in between page, for instance after the email subscription. As you can see it will print the correct affiliate in the as affiliate in the hoplink and you will be able to reward the right affiliate with the affiliate commission if a sale appears for your product, with an “in between page” where you can collect information. Of course the lead part, where you track which affiliate brought the lead (email subscription) works exactly the same as in Solution 1. Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 17. Using CBLeads To Gain Afiliates If you don’t know how or where to get affiliates that can drive traffic you could for instance have a look at our cbleads.com platform where at the moment over 23,000 affiliates are registered. We offer multiple options to recruit affiliates, under which paid mailings to our CbLeads network list. And if this entire lead technique goes beyond your skills…CbLeads can track leads for your Clickbank products: http://www.cbleads.com Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 18. 3 Creating a 2nd tier with CB to stimulate affiliate signups Explanation: It’s really an easy way to track 2nd Tiers yourself for a Clickbank Product that actually doesn’t have a 2nd tier. For those that don’t know what a 2nd Tier Program is… It is nothing more than rewarding a partner for referring another partner. A normal affiliate program rewards a partner for making a sale to a customer. Imagine there are 2 partners, partner A and partner B. A 2 tier program rewards partner A for referring partner B with a % of partner B’s sales volume or just a fixed fee per partner signup. Why should you have a 2nd Tier Program? By adding a 2nd tier you make it attractive for partners to refer other partners. Results: Your number of partners (the number of promoters for your product(s)) increases big time Results: your sales grow big time! (and that’s what everybody wants RIGHT?) Really guys, adding a 2nd Tier can grow your partner database exponentially. Do NOT underestimate this. And the fun thing is, I don’t have to teach you anything new because adding a 2nd TIER works exactly the same way as lead tracking. Adding a 2nd Tier IS a form of lead tracking… Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 19. Where we stored the partner/Clickbank ID from person 1 in the first lead tracking technique with the sign up information of the new subscriber (person 2) we now have to store the Clickbank ID from partner 1 with the signup info of partner 2 (the new partner that signed up) IMPLEMENTATION: ⇒ Simply use the side technique “creating a personalized link” to create the JV/partner referral links. These are the links you give to your partners to get them to refer other partners. Example: If your partners signup page is located at http://www.TimBekker.com/partners.php Then you can create a partner referral link by adding a parameter + a UNIQUE characteristic (the partner affiliateCBnickname). If we call the parameter “hop” then the partner referral link will simply look like: http://www.TimBekker.com/partners.php?hop=affid You will give this link to affiliates so they can refer other partners. It’s that simple! ⇒ Now just remember all the steps from the lead tracking technique and the ECHO Function using the Clickbank ID. Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 20. ⇒ Place a partner signup form on partner sign up page with one extra field. Also ask for the Clickbank Id of the partner that signs up. <form action="http://cm.cypra.com/t/r/s/zljod/" method="post" id="subForm"> <input class="txt" id="name" name="cm-name" value="your name" type="text" /> <input class="txt2" id="zljod-zljod" name="cm-zljod-zljod" value="your email" type="text" /> <input class="txt" id="cbid" name="cm-cbid" value="your Clickbank id" type="text" /> <input class="hidden" id="affid" name="cm-f-xukikk" value="<?php echo str_replace('-', ' ', $_GET[‘hop’])?>" type="hidden" /> <input class="sbm" name="submit" value="" type="submit" /></form> </div> When partner 2 signs up, the partner ID from partner 1 gets sent with the signup information of partner 2 to your autoresponder account and again we can see who referred partner 2 through the value in the “affid” field. Assume that affiliate with the CB Nickname “ethyx456” is recruiting new partners. Then the value for the “affid” field would show “ethyx456” <form action="http://cm.cypra.com/t/r/s/zljod/" method="post" id="subForm"> <input class="txt" id="name" name="cm-name" value="your name" type="text" /> <input class="txt2" id="zljod-zljod" name="cm-zljod-zljod" value="your email" type="text" /> <input class="hidden" id="affid" name="cm-f-xukikk" value="ethyx456" type="hidden" /> <input class="sbm" name="submit" value="" type="submit" /></form> </div> Remember our example in the first lead tracking technique. Now the affid field shows the Clickbank nickname of the partner that referred the new partner: Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 21. • In the partner list the new partner signup record shows us the name of the new partner Carl Wolf with his own Clickbank ID and the Clickbank nickname of his referrer “ethyx456”. If you now do a search for the affid “ethyx456” in the partner list you will find the name of the referrer and the circle is round  You could offer an affiliate that refers other affiliates for instance 10% of their sales. Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 22. 4 Creating a 2nd Tiers ALL-IN-ONE Link Explanation: you know the phrase: good, better, best (in this scenario we’ll call it “best solution”). Well, I got one for you. Setting up a 2 tier program with a separate partner referral works great, but I have one that’s even better. The All-IN-One partner link. Track leads, sales and partner signups using the same link. This overcomes misunderstandings about which link to use. It just works much more efficiently! However>> The affiliate/partner link doesn’t redirect to the partner signup page, but to the product sales page. How in the world do we echo the Clickbank ID of partner 1 in the “affid” field when partner 2 signs up on the partner page IF the affiliate link doesn’t take us to the partner signup page? That’s a good question. Let’s make this visual! Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 23. Implementatation: ⇒ The hoplink of partner 1 takes partner 2 (the new partner that wants to signup) to the main site. The main site shows the “hop” value. Brought to you by TimBekkerdotcom http://www.TimBekker.com
  • 24. Brought to you by TimBekkerdotcom http://www.TimBekker.com