seikooc
Regular Member
- Aug 11, 2008
- 268
- 133
Ok, so I think I got this right. This code:
needs to be included in my index page. Now this index page obviously has to be php and not an html doc, right??Code:<?php include("filename.php"); ?>
Also, so this index page with be the page my AM sees if she checks my traffic source, so I should just make a fake legit looking page on the index page with the previous code included right??
Then to redirect I just use the name of the location of the index page along with ?ref=whatever
I think I've got this down right, I just need to know if this is correct so I can fake my traffic source for obvious reasons.
Yes your index page has to be php. All <?php include("filename.php"); ?> does is calls the other php file with the redirect scripts on it. So make sure you properly upload the 2nd file name it the same as whatever is in <?php include("filename.php"); ?>
Your index page is usually your homepage so whatever html is on it is what will display.
To initiate a redirect you would call it by yoursite.com/?ref=whatever
whatever comes from $merchanturls[whatever]
Test it to see if works.. Just save your original index file in case you have a problem then re-upload it if it does not work.
Good luck