- This topic is empty.
-
AuthorPosts
-
July 3, 2012 at 8:05 am #826027
misswiggMemberThat would be so annoying! Why would you want that?
July 3, 2012 at 11:58 am #826030Anonymous
InactiveYes, but it would not be healthy for you to see it all day lol..
July 3, 2012 at 1:47 pm #826037
pieterhoniballMemberI don’t plan on doing it for every banner. Just targeted ones. So can this be done?
July 3, 2012 at 4:15 pm #826039
bosshoggsMemberHey 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
ClickTaleIn case you’re interested, we released a little article around Heat Maps a few months back:
How To Use Heat Maps For Conversion TrackingJuly 3, 2012 at 5:41 pm #826047Anonymous
Inactiveof 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 headerfieldsmail($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
?>
July 3, 2012 at 7:04 pm #826049
pieterhoniballMemberGreat thanks for the suggestions. i will do both to see which one i prefer. thanks for the quick response.
July 3, 2012 at 10:35 pm #826053
bosshoggsMember@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”; 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 headerfieldsmail($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!
July 5, 2012 at 2:47 pm #826082
CasinoGemMember@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”; 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 headerfieldsmail($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
August 30, 2012 at 3:15 am #827506
pieterhoniballMemberAllFreeChips… 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″ img scr=”http://affiliate.igamefriends.com/processing/impressions.asp?btag=a_5239b_236″ 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
August 30, 2012 at 2:58 pm #827525Anonymous
Inactivejave 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 headerfieldsmail($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″ 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″ img scr=”http://affiliate.igamefriends.com/processing/impressions.asp?btag=a_5239b_236″ 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
August 30, 2012 at 11:35 pm #827540
pieterhoniballMemberThx for the help…the second part code that you said to add…where am i adding that?
August 31, 2012 at 12:52 pm #827545Anonymous
Inactivethe 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.
August 31, 2012 at 5:04 pm #827549
pieterhoniballMemberOk, 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 headerfieldsmail($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″ 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?
August 31, 2012 at 6:09 pm #827553Anonymous
Inactiveyes, 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
September 2, 2012 at 2:55 pm #827572
pieterhoniballMemberAllFreeChips….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
-
AuthorPosts