I am trying to figure out how to use the php cloak link and still send subid info thru. Stuff like keywords, source etc. <?php header("Location:http://www.affiliatelinkhere.com/1234?subid="); ?> subid= is what I am trying to figure out how to pass from the main page link.
Use it in a variable..... I'm guessing nobody has helped you yet because this looks like it belongs in the php forum
off the top of my head something along the lines of.... <?php $kw = rawurlencode(strip_tags(trim($_GET[kw]))); header("Location: http://www.affiliatelinkhere.com/1234?subid=$kw"); exit(); ?> PHP: just play around and evolve something that suits your needs
Easy, if i read it right. <?php $sub = $_GET['sub']; header("Location:http://www.affiliatelinkhere.com/1234?subid=$sub"); ?> Link to the page with the above code (header redirect) like this: http://www.youresite.com/page.php?sub=certainsubidhere