Go Back   WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
LinkBack Thread Tools
Old 10-17-2009, 07:11 PM   #1
JohnYeo.name
War Room Member
 
jhongren's Avatar
 
Join Date: Jul 2008
Location: Singapore
Posts: 2,640
Blog Entries: 2
Thanks: 464
Thanked 241 Times in 126 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile 
Contact Info
Send a message via Skype™ to jhongren
Default Getresponse users: How do you track the urls & aff ids your leads come from?

Hi,

I need help.

I want to track which url and which aff id
my leads come from.

How can I do it?

It is for a contest and for me to count the number
of opt ins. And I can track which affiliate id they
come from.

Thanks in advance.

John

jhongren is offline   Reply With Quote
Old 10-17-2009, 07:26 PM   #2
Active Warrior
 
mrnightowl's Avatar
 
Join Date: Oct 2009
Location: Acapulco, Mexico
Posts: 53
Thanks: 3
Thanked 5 Times in 5 Posts
Social Networking View Member's YouTube Profile
Contact Info
Send a message via ICQ to mrnightowl Send a message via AIM to mrnightowl Send a message via MSN to mrnightowl Send a message via Yahoo to mrnightowl Send a message via Skype™ to mrnightowl
Default Re: Getresponse users: How do you track the urls & aff ids your leads come from?

If your aff ids look like ?aff=123456 type of thing you can use php to GET the id when they come to your site and insert something in a database or text file a count of sorts

There is a http referrer for php but its not 100% as some browsers don't pass this data

not here to sell or convince only to learn and interact
mrnightowl is offline   Reply With Quote
Old 10-17-2009, 07:34 PM   #3
JohnYeo.name
War Room Member
 
jhongren's Avatar
 
Join Date: Jul 2008
Location: Singapore
Posts: 2,640
Blog Entries: 2
Thanks: 464
Thanked 241 Times in 126 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile 
Contact Info
Send a message via Skype™ to jhongren
Default Re: Getresponse users: How do you track the urls & aff ids your leads come from?

Quote:
Originally Posted by mrnightowl View Post
If your aff ids look like ?aff=123456 type of thing you can use php to GET the id when they come to your site and insert something in a database or text file a count of sorts

There is a http referrer for php but its not 100% as some browsers don't pass this data
Thanks...it is clickbank aff id. How do I go about doing that?

John

jhongren is offline   Reply With Quote
Old 10-17-2009, 07:41 PM   #4
Active Warrior
 
mrnightowl's Avatar
 
Join Date: Oct 2009
Location: Acapulco, Mexico
Posts: 53
Thanks: 3
Thanked 5 Times in 5 Posts
Social Networking View Member's YouTube Profile
Contact Info
Send a message via ICQ to mrnightowl Send a message via AIM to mrnightowl Send a message via MSN to mrnightowl Send a message via Yahoo to mrnightowl Send a message via Skype™ to mrnightowl
Default Re: Getresponse users: How do you track the urls & aff ids your leads come from?

In the case of that you could just capture the entire referrer link and have it stored in a database. Have a query that checks to see if its in the database yet and if its not have it put a entry in. If its in the database have it add a count to that particular ID. like
Code:
INSERT INTO affiliates SET id = '' ON DUPLICATE KEY UPDATE count=count+1
Just an example query I would make if I was making a script like that

not here to sell or convince only to learn and interact
mrnightowl is offline   Reply With Quote
Old 10-17-2009, 07:57 PM   #5
GarrieWilson.com
War Room Member
 
GarrieWilson's Avatar
 
Join Date: Jul 2006
Location: Mount Vernon, IL
Posts: 4,366
Blog Entries: 20
Thanks: 550
Thanked 342 Times in 208 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Default Re: Getresponse users: How do you track the urls & aff ids your leads come from?

John,

A much better way, so they only get credit for actual opt-ins AND ones that confirm, is to use the php command GET to add the affiliate ID to a hidden custom field in the GetResponse form.

Then at GR, turn on pass custom variables and then on the page after people confirm, use GET to add it to a database.

If you arent using double opt-in, GR will still pass the data to the follow-up page for you to GET and add to the database.

A programmer (worth anything) should be able to do this in 30 minutes or less.

Garrie

GarrieWilson is online now   Reply With Quote
Old 10-17-2009, 08:07 PM   #6
JohnYeo.name
War Room Member
 
jhongren's Avatar
 
Join Date: Jul 2008
Location: Singapore
Posts: 2,640
Blog Entries: 2
Thanks: 464
Thanked 241 Times in 126 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile 
Contact Info
Send a message via Skype™ to jhongren
Default Re: Getresponse users: How do you track the urls & aff ids your leads come from?

Quote:
Originally Posted by GarrieWilson View Post
John,

A much better way, so they only get credit for actual opt-ins AND ones that confirm, is to use the php command GET to add the affiliate ID to a hidden custom field in the GetResponse form.

Then at GR, turn on pass custom variables and then on the page after people confirm, use GET to add it to a database.

If you arent using double opt-in, GR will still pass the data to the follow-up page for you to GET and add to the database.

A programmer (worth anything) should be able to do this in 30 minutes or less.

Garrie
Thanks Garie..thanks so much...has been a while I last talk to u =)

How have you been?

Btw, what is GET?

Thanks,
John

jhongren is offline   Reply With Quote
Old 10-17-2009, 08:09 PM   #7
Active Warrior
 
mrnightowl's Avatar
 
Join Date: Oct 2009
Location: Acapulco, Mexico
Posts: 53
Thanks: 3
Thanked 5 Times in 5 Posts
Social Networking View Member's YouTube Profile
Contact Info
Send a message via ICQ to mrnightowl Send a message via AIM to mrnightowl Send a message via MSN to mrnightowl Send a message via Yahoo to mrnightowl Send a message via Skype™ to mrnightowl
Default Re: Getresponse users: How do you track the urls & aff ids your leads come from?

Quote:
Originally Posted by GarrieWilson View Post
John,

A much better way, so they only get credit for actual opt-ins AND ones that confirm, is to use the php command GET to add the affiliate ID to a hidden custom field in the GetResponse form.

Then at GR, turn on pass custom variables and then on the page after people confirm, use GET to add it to a database.

If you arent using double opt-in, GR will still pass the data to the follow-up page for you to GET and add to the database.

A programmer (worth anything) should be able to do this in 30 minutes or less.

Garrie
thats exactly how I would do it. and since you probably already have the forms in place for your opt-ins it would just be adding about 3 lines of code. and a little modification to the db.

not here to sell or convince only to learn and interact
mrnightowl is offline   Reply With Quote
Old 10-17-2009, 08:16 PM   #8
JohnYeo.name
War Room Member
 
jhongren's Avatar
 
Join Date: Jul 2008
Location: Singapore
Posts: 2,640
Blog Entries: 2
Thanks: 464
Thanked 241 Times in 126 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile 
Contact Info
Send a message via Skype™ to jhongren
Default Re: Getresponse users: How do you track the urls & aff ids your leads come from?

Quote:
Originally Posted by mrnightowl View Post
thats exactly how I would do it. and since you probably already have the forms in place for your opt-ins it would just be adding about 3 lines of code. and a little modification to the db.
Wow...all the programming codes...making me confused...

yep...need them to confirm optin and it is a double optin.

sounds easy though...will see what help I can get...

Thanks!

John

jhongren is offline   Reply With Quote
Old 10-17-2009, 08:27 PM   #9
GarrieWilson.com
War Room Member
 
GarrieWilson's Avatar
 
Join Date: Jul 2006
Location: Mount Vernon, IL
Posts: 4,366
Blog Entries: 20
Thanks: 550
Thanked 342 Times in 208 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Default Re: Getresponse users: How do you track the urls & aff ids your leads come from?

I attached the code for the first step but I dont know anything about the database part. (Forum wouldnt let me add it to the message.)


Garrie


code.txt


Last edited by GarrieWilson; 10-17-2009 at 08:34 PM. Reason: attached better code/instructions
GarrieWilson is online now   Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum

Tags
aff, getresponse, ids, leads, track, urls, users

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 12:02 PM.