keith73:
It appears I finally have a solution here...substantially thanks to YOUR help 😃
At the top of EACH page:
error_reporting(2039); // Temporary fix? Without it, numerous Notices/warnings
ob_start();
session_start();
$sessid = session_id();
In the code loops of EACH successive page until final processing page:
$_SESSION['someformvar'] = $_POST['someformvar'];
$url = "eachnextpage.php?" . session_name() . "=$sessid";
header("Location: $url");
FYI, I also tried sticking this in above but it didn't seem to work:
// echo "<input type=\"hidden\" name=\"session_name\" value=\"session_id\">";
I don't know if the error_reportin(2039) might cause a problem on someone else's system, but for now I can use here myself which is a first step!
Thanks again to ALL who so kindly offered assistance, code examples & testing help.
Best Regards...