View Single Post
Old 2005-01-29, 12:53 PM   #11
cd34
a.k.a. Sparky
 
cd34's Avatar
 
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
that assumes that you have RegisterGlobals turned on -- which used to be the default for php, however, most hosting companies turn it off.

If you're going to use $affcode, do something like:

incoming link: http://domain.com/page.php?affcode=asdf

At the top of the page:
<?php $affcode=$_REQUEST['affcode'];?>

then, in each of your links

<a href="page2.php?<?php echo $affcode;?>">page 2</a>
__________________
SnapReplay.com a different way to share photos - iPhone & Android
cd34 is offline   Reply With Quote