Jump to content

Should be very easy...


sam06

Recommended Posts

Hi,

I am trying to make the link http://www.com/link.php?merch=????&prog=????

go to http://scripts.affiliatefuture.com/AFClick.asp?affiliateID=31666&merchantID=????&programmeID=????&mediaID=0&tracking=GFC&url=

 

My code for link.php is

<?php
header( 'Location: http://scripts.affiliatefuture.com/AFClick.asp?affiliateID=31666&merchantID=<?php echo $_GET["merch"]?>&programmeID=<?php echo $_GET["prog"] ?>&mediaID=0&tracking=GFC&url=' ) ;
?>

But unfortunetly I am having no luck;

I'm pretty sure I don't need the extra <?php's in the link, but I don't know how to make it so it process the php and not puts the actual code into the link.

 

Thanks,

Sam

 

Link to comment
Share on other sites

Variables within single quotes are not expanded. Try:

<?php
header( 'Location: http://scripts.affiliatefuture.com/AFClick.asp?affiliateID=31666&merchantID='  . $_GET["merch"] . '&programmeID=' .  $_GET["prog"] . '&mediaID=0&tracking=GFC&url=' ) ;
?>

 

Ken

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.