I have:
In my form -In formmail, fmbadhandler and verifyimage -Code:$SESSION_NAME = "tsremail"; // if you're using a particular name for your session, specify it here. if (!empty($SESSION_NAME)) session_name($SESSION_NAME); session_start(); $_SESSION['baseref']=$baseref; .... ...... (html headers are here) .....in errrortemplate -Code:$SESSION_NAME = "tsremail"; // if you're using a particular name for your session, specify it here. if (!empty($SESSION_NAME)) session_name($SESSION_NAME); session_start();When loaded errorrtenplate displays -Code:echo "dummy <br />"; $SESSION_NAME = "tsrmail"; // if you're using a particular name for your session, specify it here. if (!empty($SESSION_NAME)) session_name($SESSION_NAME); session_start(); ..... ......(html headers are here) ...... while (list ($key, $val) = each ($_GET)) { echo "$key -> $val <br>"; } echo "dummy <br />"; echo $SESSION_NAME."<br >"; echo "dummy <br />"; while (list ($key, $val) = each ($_SESSION)) { echo "$key -> $val <br>"; } echo "dummy <br />";The URL displayed when errortemplate is loaded isdummy
USER_AGENT -> Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)
sessid -> 76f61a10aa550b81d67b9f1f1c947d2a
dummy
tsrmail
dummy
dummy
the value for $_SESSION['baseref'] is not carried forward -
have I missed something?
help appreciated
Allan



Any help very much appreciated
Reply With Quote
In any case, thought I'd post that here in case it helps someone else.

Bookmarks