Script Needed To Insert Clickbank ID

12 replies
Hi,

I would need some help here.

It is for my affiliate sign up page.

An affiliate enters his name, email and clickbank id. After he signed up, he is brought to a new page with all his clickbank id populated throughout the affiliate tool page (including emails, solo ads and so on.)

This makes it really easy for the affiliate to Just Copy and Paste.

Where can I get such a script?

Thanks for your help in advance.

Cheers,
John
#clickbank #insert #needed #script
  • Profile picture of the author Jose Delgado
    I believe you don't need any special script,

    simple php will do. (i think)

    I've never done it but I think that's the way to do it.
    {{ DiscussionBoard.errors[126769].message }}
    • Profile picture of the author jhongren
      Originally Posted by Jose Delgado View Post

      I believe you don't need any special script,

      simple php will do. (i think)

      I've never done it but I think that's the way to do it.
      Hi Jose,

      Thanks for your quick response. You are always so helpful.

      You know of anyone who knows how.

      Cheers.
      John
      {{ DiscussionBoard.errors[126771].message }}
      • Profile picture of the author Jose Delgado
        A good person to contact would be Najat Engineer. I am a member to one of her sites and she does this.

        If a script is needed, she might tell you which one she uses.
        {{ DiscussionBoard.errors[126774].message }}
        • Profile picture of the author Michael Mayhew
          Signature

          IMO Partnership. A National Insurance Marketing Alliance.
          http://www.imopartnership.com/

          {{ DiscussionBoard.errors[126805].message }}
        • Profile picture of the author DerrickMarkotter
          This is quite easy to do if you're using AWeber - probably easy with
          other autoresponders as well.

          1. You'll need to use the HTML form code, not JavaScript.

          2. Enable 'Forward Variables' (Post CGI variables to the thank you page?)
          on the Form Details page.

          3. When AWeber returns your visitor to the thank-you page, the URL
          will contain the passed parameters, something like this:

          Code:
          http://yoursite.com/thankyou.php?from=name%40server.com&meta_web_form_id=XXXXXXXXXX&name=Name%20Surname
          4. Insert PHP code similar to this at the very beginning of the thank-you page:

          Code:
          <?php
             $name = $_GET["name"];
             $email = $_GET["from"];
          ?>
          (The variable names are in the original HTML form)

          5. Rename the thank-you page with a .PHP extension.

          6. When you want to use the visitor's name or other details, insert a
          corresponding PHP variable like this:

          Code:
          <?php echo $   name; ?>
          7. You can insert that code in a form field as the 'default' value for the field, like this:

          Code:
          <input type="text" name="name" value="<?php echo ; ?>" size="20">
          Hope this helps!
          {{ DiscussionBoard.errors[126823].message }}
          • Profile picture of the author DerrickMarkotter
            The forum script added a few spaces in the code snippets above, which means they probably won't work "as is".
            {{ DiscussionBoard.errors[126831].message }}
            • Profile picture of the author jhongren
              Hey Guys,

              Thanks so much for your help.

              Now I would need time to figure out... Not easy thou. :p

              Cheers,
              John
              {{ DiscussionBoard.errors[126930].message }}
              • Profile picture of the author jhongren
                Hi, I am just thinking if I use single optin, would you be able to do it for me? I dont mind paying a token fee. PM me if you can.

                Thanks in advance, guys. I am not a technical person. hehe.:p

                John
                {{ DiscussionBoard.errors[127354].message }}
                • Profile picture of the author RichDavis
                  I Can help you out buddy and create this for you pretty quickly...we can get it to work how you need it to work if you want to use single opt-in no problem either, I have just the perfect solution in mind for you! shoot me a pm if your interested in chatting about the solution i have in mind I would love to help you as this is the type of stuff I do in my sleep!

                  God bless
                  Rich Davis


                  Originally Posted by jhongren View Post

                  Hi, I am just thinking if I use single optin, would you be able to do it for me? I dont mind paying a token fee. PM me if you can.

                  Thanks in advance, guys. I am not a technical person. hehe.:p

                  John
                  {{ DiscussionBoard.errors[127496].message }}
  • Profile picture of the author Allegro
    yeah it should be "$name"
    Signature

    Nothing to see here. Move along, citizen.

    {{ DiscussionBoard.errors[126845].message }}
  • Profile picture of the author samstephens
    Hi John,

    You can check out HopGuard:

    Clickbank Affiliate Link Cloaking with HopGuard

    This displays a form that your customer enters their ID, and out pops not just a standard hoplink, but an encrypted one to help cut down affiliate link theft.

    It has the bonus of being able to direct your customers to specific pages/products/websites (ie. selling multiple products through one Clickbank account).

    And yes, you can use PHP variables to display the affiliate links inside your promo material.

    For example, Rosalind Gardner is using it (though a slightly older version) on her site:
    The Super Affiliate Handbook - Affiliate Program

    cheers
    Sam
    Signature
    DLGuard v5 - The Warrior Edition
    Full integration with JVZoo, DigiResults, and WSO Pro for secure WSO's and WSO memberships.

    www.dlguard.com
    Serving the Warrior Forum since 2004
    {{ DiscussionBoard.errors[126869].message }}
  • Profile picture of the author tecHead
    Yeah, Derrick is pretty much on the money.. I was gonna post this for ya; but he beat me to it.

    Just an added note...
    Be careful with how you get your variables from the form "posting" to your thankyou.php (or whatever page).

    There's both POST and GET

    GET will come in like Derrick posted...
    Code:
    http://domain.tld/page.php?var1=this&var2=that
    and you'd retrieve those with...
    Code:
    $_GET['var1'];
    $_GET['var2'];
    and assign them as such...
    Code:
    $whatev = $_GET['var1'];
    $whawha = $_GET['var2'];
    POST will send the variables back in a POST package and you'd retrieve and assign them as such...
    Code:
    $whatev = $_POST['var1'];
    $whawha = $_POST['var2'];
    HTH
    PLP,
    tecHead
    Signature
    Learn Everything You Need to Know About CryptoCurrencies
    Automation is the primary conduit to successful relaxation
    {{ DiscussionBoard.errors[126870].message }}

Trending Topics