Yeah - I am using session_start(), I have tried with $SESSION, $HTTP_SESSION_VARS, $GLOBALS[HTTP_SESSION_VARS], no joy with any of them - if I go
session_start();
$var="fun";
session.register('var');
and then use a link, ie let the HTML page load and click on a link, then it passes through a PID and the session is there to use, but if I try to redirect - even using a javascript redirect I lose the session.
Does this mean that the server is not saving my session properly? or that I'm not getting it properly???
Thanks for your quick response by the way
samaritan