Greenguy's Board


Go Back   Greenguy's Board > Programming & Scripting
Register FAQ Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Search this Thread Rating: Thread Rating: 1 votes, 5.00 average. Display Modes
Prev Previous Post   Next Post Next
Old 2004-10-15, 06:13 PM   #6
cykoe6
Internet! Is that thing still around?
 
Join Date: Oct 2004
Location: NYC
Posts: 3
Insert affilate codes into links

Quote:
Originally posted by Rorschach
Assuming you're changing the links on a dynamically generated free hosted gallery, eg. you're changing the links on:
http://www.fhgdomain.com/fhg.php?id=cocksmoker

On fhg.php:

PHP Code:
<?php

// Extract the affiliate id from the url
$affiliate_id $_GET['id'];

// Insert the affiliate id into the sponsor code
$link_url "http://www.sponsordomain.com/clickthrough.php?id=$id";

// Print the modified url
print "<a href=\"$link_url\">Click here to check out this fucking amazing sponsor</a>";

?>
This is a very usefull script but I had to make a simple modifaction to get it to work. It should read as follows:

PHP Code:
<?php

// Extract the affiliate id from the url
$affiliate_id $_GET['id'];

// Insert the affiliate id into the sponsor code
$link_url "http://www.sponsordomain.com/clickthrough.php?id=$affiliate_id";

// Print the modified url
print "<a href=\"$link_url\">$link_url</a>";

?>
Note the change on this line:

$link_url = "http://www.sponsordomain.com/clickthrough.php?id=$affiliate_id ";

Also if you want to use this script to insert codes into links from a form (so a reseller can insert his code and then have his ID insterted into all of your links, you can use the following:

PHP Code:
<?php

// Extract the affiliate id from the url
$affiliate_id $_POST['id'];

// Insert the affiliate id into the sponsor code
$link_url "http://www.sponsordomain.com/clickthrough.php?id=$affiliate_id";

// Print the modified url
print "<a href=\"$link_url\">$link_url</a>";

?>
I hope this helps.

This script can also serve as the basis for a POTD script using iframes.
__________________

Partydoll Teens!
cykoe6 is offline   Reply With Quote
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

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

Forum Jump


All times are GMT -4. The time now is 11:06 PM.


Mark Read
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc