Is this possible? Create Clickbank Links Dynamically**Stil Possible W/ Hyperlink Protection

4 replies
Here is what I want to do for a project I am working on but I don't know if it is possible so I am looking for some feedback.

Basically what I want to do is to create a review site page for clickbank products. I want other people to drive traffic to it.

Now here is where it gets tricky.

When they drive the traffic there I want the page to show the links to the clickbank products and I want them to be the affiliate links for the products.

So say you drive traffic to this page and your clickbank ID is xyz123.

Now the traffic you send to the page, I want the page to have the links be

hxxp://xyz123.product.hop.clickbank.net/

Is this something that is possible and if so how would I go about doing this?

Say I do this with a page that is actually on clickbank. So they would have to send the traffic through there hoplink. Would that help?

Would I need to set up some type of database to do this?

I have no clue but I am looking for feedback.

Thanks
#clickbank #create #dynamically #links
  • Profile picture of the author stevenh512
    If they're sending traffic to your page with a hoplink you wouldn't need to use any kind of database to do this. Clickbank will automatically send them to your page with ?hop=xyz123 as part of the URL query string. In PHP, you'd use that information like this:

    if (isset($_GET["hop"])) {
    $affid = $_GET["hop"];
    } else {
    $affid = "defaultcbnickname";
    }

    Then you'd generate the links like this:

    $link = "hxxp://".$affid.".product.hop.clickbank.net";

    If they're not driving traffic to the site through a hoplink, you could still have them put their CB nickname in the query string, maybe as ?id=xyz123 or ?affil=xyz123 (or whatever else you prefer).
    Signature

    This signature intentionally left blank.

    {{ DiscussionBoard.errors[717989].message }}
    • Profile picture of the author stayfocused
      Steven,

      That is what I wanted to know. I figured there was a way to go about doing this but it was over my head.

      I might be getting ahold of you for some questions when I get around to it.

      Thanks again,
      Jason
      {{ DiscussionBoard.errors[718695].message }}
      • Profile picture of the author stayfocused
        Is this still going to be possible with ClickBanks new hyperlink protection?
        {{ DiscussionBoard.errors[806340].message }}
        • Profile picture of the author mojojuju
          Originally Posted by stayfocused View Post

          Is this still going to be possible with ClickBanks new hyperlink protection?
          Yes it's still possible. Clickbank will still track unencrypted hoplinks.
          Signature

          :)

          {{ DiscussionBoard.errors[808060].message }}

Trending Topics