There are no articles in this category. If subcategories display on this page, they may have articles.

Subcategories

//***************** THIS THE THE AFFILIATE CATCHER CODE - Please leave it intact and at the very top of the page ********************

$session =& JFactory::getSession();

$query_string_array = JRequest::get( 'get' ); //Get an array of all the variables in the php $_GET array
foreach ($query_string_array as $name => $value)
{
if($name=="myAffID")
{
$newAffIDis = $value;
}
}

if($newAffIDis == "")
{
//no affiliate id passed - so no session variable set
}
else
{
//check whether session variable already exists
$sessisthere = $session->get('newAffID');
if($sessisthere=="")
{
//no session - so set it
$session->set('newAffID', $newAffIDis);
}
else
{
//session already set - do nothing!
}
}

//***************** END AFFILIATE CATCHER CODE ****************************************

?>

Site Search