Get exclusive CAP network offers from top brands

View CAP Offers

banner question

[bsa_pro_ad_space id=2]
  • This topic is empty.
Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • #826027
    misswigg
    Member

    That would be so annoying! Why would you want that? :)

    #826030
    Anonymous
    Inactive

    Yes, but it would not be healthy for you to see it all day lol..

    #826037

    I don’t plan on doing it for every banner. Just targeted ones. So can this be done?

    #826039
    bosshoggs
    Member

    Hey Apex Global… To be honest, I’m not too familiar with an email function that can do this. Rather, I would suggest a heat map. Essentially, you can implement a site heat map and login to see what parts of your site(s) are clicked on this most. This also helps tremendously for A/B testing.

    And, as Caseym mentioned, it is a hell of a lot less annoying than getting emails the whole live long day about clicks ;)

    Options I would suggest:
    CrazyEgg
    ClickTale

    In case you’re interested, we released a little article around Heat Maps a few months back:
    How To Use Heat Maps For Conversion Tracking

    #826047
    Anonymous
    Inactive

    of course it can be done, just redirect the click, while doing that send en email :)

    Code:
    open PHP TAG
    //This is the page you sent from the banner such as redirect.php
    $url = “http://www.thecasino.com/affid112233”; or whatever your aff URL is

    $Name = “my Site”; //senders name
    $email = “[email protected]”; //senders e-mail adress
    $recipient = “[email protected]”; //recipient
    $mail_body = “The text for the mail…”; //mail body like you got a click
    $subject = “Subject for reviever”; //subject
    $header = “From: “. $Name . ” <" . $email . ">rn”; //optional headerfields

    mail($recipient, $subject, $mail_body, $header); //mail command 🙂

    // now you sent an email lets redirect to the url

    header(“Location: $url”);

    // now you emailed and re-directed

    ?>

    #826049

    Great thanks for the suggestions. i will do both to see which one i prefer. thanks for the quick response.

    #826053
    bosshoggs
    Member

    @allfreechips 241952 wrote:

    of course it can be done, just redirect the click, while doing that send en email :)

    Code:
    open PHP TAG
    //This is the page you sent from the banner such as redirect.php
    $url = “http://www.thecasino.com/affid112233&#8221;; or whatever your aff URL is

    $Name = “my Site”; //senders name
    $email = “[email protected]”; //senders e-mail adress
    $recipient = “[email protected]”; //recipient
    $mail_body = “The text for the mail…”; //mail body like you got a click
    $subject = “Subject for reviever”; //subject
    $header = “From: “. $Name . ” <" . $email . ">rn”; //optional headerfields

    mail($recipient, $subject, $mail_body, $header); //mail command 🙂

    // now you sent an email lets redirect to the url

    header(“Location: $url”);

    // now you emailed and re-directed

    ?>

    Whoa…. Had no idea! Thanks, AllFreeChips!

    #826082
    CasinoGem
    Member

    @allfreechips 241952 wrote:

    of course it can be done, just redirect the click, while doing that send en email :)

    Code:
    open PHP TAG
    //This is the page you sent from the banner such as redirect.php
    $url = “http://www.thecasino.com/affid112233&#8221;; or whatever your aff URL is

    $Name = “my Site”; //senders name
    $email = “[email protected]”; //senders e-mail adress
    $recipient = “[email protected]”; //recipient
    $mail_body = “The text for the mail…”; //mail body like you got a click
    $subject = “Subject for reviever”; //subject
    $header = “From: “. $Name . ” <" . $email . ">rn”; //optional headerfields

    mail($recipient, $subject, $mail_body, $header); //mail command 🙂

    // now you sent an email lets redirect to the url

    header(“Location: $url”);

    // now you emailed and re-directed

    ?>

    Great coding all free

    #827506

    AllFreeChips… again thanks for the code, i am now trying to plug what i can into the site…i’m having trouble though.. this is the code i am using to direct off the banner..

    a onclick=”window.open(this.href,’_blank’);return false;” href=”http://affiliate.igamefriends.com/processing/clickthrgh.asp?btag=a_5239b_236&#8243; img scr=”http://affiliate.igamefriends.com/processing/impressions.asp?btag=a_5239b_236&#8243; alt=”www.apex-gambling.com” style=”border:none; width:125px; height:125px

    i’m confused on where to put in the code so its in the banner and emails me on a click

    can you direct me some, thank you

    #827525
    Anonymous
    Inactive

    jave links are bad, as they are really just passing your link juice directly to the casino, but thats a seperate issue

    lest do this

    Code:
    open PHP TAG
    //This is the page you sent from the banner such as redirect.php
    $url = “[COLOR=”#FF8C00″]http://affiliate.igamefriends.com/processing/clickthrgh.asp?btag=a_5239b_236[/COLOR]”; or whatever your aff URL is

    $Name = “my Site”; //senders name
    $email = “[email protected]”; //senders e-mail adress
    $recipient = “[email protected]”; //recipient
    $mail_body = “The text for the mail…”; //mail body like you got a click
    $subject = “Subject for reviever”; //subject
    $header = “From: “. $Name . ” <" . $email . ">rn”; //optional headerfields

    mail($recipient, $subject, $mail_body, $header); //mail command 🙂

    // now you sent an email lets redirect to the url

    header(“Location: $url”);

    // now you emailed and re-directed

    ?>

    Be sure to add the

    Code:
    a onclick=”window.open(this.href,’_blank’);return false;” href=”[COLOR=”#FF8C00″]http://www.YOURSITE.COM/redirect.php[/COLOR]” img scr=”http://affiliate.igamefriends.com/processing/impressions.asp?btag=a_5239b_236&#8243; alt=”www.apex-gambling.com” style=”border:none; width:125px; height:125px

    @Apex Global 244002 wrote:

    AllFreeChips… again thanks for the code, i am now trying to plug what i can into the site…i’m having trouble though.. this is the code i am using to direct off the banner..

    a onclick=”window.open(this.href,’_blank’);return false;” href=”http://affiliate.igamefriends.com/processing/clickthrgh.asp?btag=a_5239b_236&#8243; img scr=”http://affiliate.igamefriends.com/processing/impressions.asp?btag=a_5239b_236&#8243; alt=”www.apex-gambling.com” style=”border:none; width:125px; height:125px

    i’m confused on where to put in the code so its in the banner and emails me on a click

    can you direct me some, thank you

    #827540

    Thx for the help…the second part code that you said to add…where am i adding that?

    #827545
    Anonymous
    Inactive

    the top part is the code you need to make the redirect.php with, the second is your banner code with the url to the redirect.php instead of the casino.

    #827549

    Ok, i think i got it. so the code should look like this?

    open PHP TAG//This is the page you sent from the banner such as redirect.php
    $url = “http://affiliate.igamefriends.com/processing/clickthrgh.asp?btag=a_5239b_236“; or whatever your aff URL is
    $Name = “www.Apex-Gambling.com”; //senders name
    $email = “[email protected]”; //senders e-mail adress
    $recipient = “[email protected]”; //recipient
    $mail_body = “Affiliate banner name Clicked”; //mail body like you got a click
    $subject = “Banner Click”; //subject
    $header = “From: “. $Name . ” <" . $email . ">rn”; //optional headerfields

    mail($recipient, $subject, $mail_body, $header); //mail command :)

    // now you sent an email lets redirect to the url

    header(“Location: $url”);

    // now you emailed and re-directed ?>

    a onclick=”window.open(this.href,’_blank’);return false;” href=”http://www.Apex-Gambling.com/redirect.php” img scr=”http://affiliate.igamefriends.com/processing/impressions.asp?btag=a_5239b_236&#8243; alt=”www.apex-gambling.com” style=”border:none; width:125px; height:125px

    And then i will get the banner image and when someone clicks it it will email me and redirect them to the landing page or direct download?

    #827553
    Anonymous
    Inactive

    yes, there are two seperate pieces there.. the large one is the code you need to make a file called redirect.php and copy / update all that into, then change open Php tag to an actual

    #827572

    AllFreeChips….i posted the html just like it says in the last post…not sure y but all i get is the code..in text format…no banner comes up and the text isn’t even clickable…any suggestions

Viewing 15 posts - 1 through 15 (of 18 total)