I took this a little further and by going to webassist > cookies >set session value created the value
<?php
@session_start();
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$_SESSION["BoatResultsSession"] = "".$row_DetailRS1['RecNo'] ."";
}
?>
I then included this session in the recordset of the insert page. The insert page opens but the url does not contain a RecNo (recordID) and the text field recno remains empty.
I am attaching the detail and the insert page in the hope for some guidance.
Many thanks
John