I have been using the following method to mask my affiliate links up to this point, but it's getting very messy trying to keep track of so many different php files.
www.mysite.com/Folder/Script1.php
www.mysite.com/Folder/Script2.php
Code within php files.
Script1.php and script2.php both point to the same root domain (Via an affiliate link obviously). I could just use script1.php for both, but I want to be able to track each link seperatly (Link 1 at the top of the page and link 2 at the bottom of the page) using prosper202. The above method only allows me to use one url per php file, and thus only one subid.
Ideally I would like to group all my affiliate links so that for example, any link pointing to the offer page could simply look like the link below, but I could use multiple subids for each individual link on my site (There are lots of links on my site)
www.mysite.com/Script
I would also like to be able to group any deep links to the affiliate site to be grouped into another category so that it would look like the link below, but would also be able to use multiple subids.
I'm sure something like this must be possible, but my coding skills leave a lot to be desired. I hope I have explained my question well enough, would really appreciate your feedback.
www.mysite.com/Folder/Script1.php
www.mysite.com/Folder/Script2.php
Code within php files.
Code:
<?PHP
Header("Location: http://tracking.mysite.com&t202kw=AnchorText1");
Exit;
?>
Script1.php and script2.php both point to the same root domain (Via an affiliate link obviously). I could just use script1.php for both, but I want to be able to track each link seperatly (Link 1 at the top of the page and link 2 at the bottom of the page) using prosper202. The above method only allows me to use one url per php file, and thus only one subid.
Ideally I would like to group all my affiliate links so that for example, any link pointing to the offer page could simply look like the link below, but I could use multiple subids for each individual link on my site (There are lots of links on my site)
www.mysite.com/Script
I would also like to be able to group any deep links to the affiliate site to be grouped into another category so that it would look like the link below, but would also be able to use multiple subids.
I'm sure something like this must be possible, but my coding skills leave a lot to be desired. I hope I have explained my question well enough, would really appreciate your feedback.