That is different (with the 2nd referral page) than I was trying.
I did exactly what you show, and I did not get a value for the FTCN session.
So in the Landing site code, strpos test, I put an ...
if ( strpos($referrer, session_name()) !== false ) {
echo 'Passed<br>';
$parsed = parse_url($referrer);
list(,$sessionid) = explode('=', $parsed['query']);
session_id($sessionid);
}
And it does not echo, so that is failing and as you would expect, if I echo the ...
session_start();
echo '$_SESSION[\'FTCN\'] = ' . $_SESSION['FTCN'];
exit;
... I get no value.
Thoughts?
Thanks,
Don