Thanks Ken. A bit more of what I am trying to do.
Menu.php has select buttons to go to pages where quantity items are entered agains
items. One such page would be as below.
Menu,php has the following line in the opening:
<?php
session_start();
?>
---------------------------------------------------------------
Page name - Entry1.HTML
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
</head>
<body>
<form method="POST" action="Accept.php">
<br>
<table border="1" width="100%" id="table1">
<tr>
<td>DB6</td>
<td>6mins</td>
<td width="542">
<input type="text" name="DB6" size="12"></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td width="542"> </td>
</tr>
</table>
<input type="submit">
</form>
<p>
When submitted it goes to the next page below:
--------------------------------------------------------------
Page name Accept.php
<?php
session_start();
$_SESSION['DB6'] = $_POST['DB6'];
print '<html><body>
<a href="ShowEntry.php">click here</a>
</body></html>';
?><p>This is session1</p>
On clicking the button, it passes to the next page
--------------------------------------------------------------
Page name ShowEntry.php
<?php
session_start();
print 'The value of DB6 is: ' . $_SESSION['DB6'] . '
?>
<html>
<body>
<a href="Menu.php">click here</a>
</body>
</html>';
On clicking the button it returns to the Menu page.
---------------------------------------------------------------
PROBLEMS
The above sequence works in a straight line, I want it so that I go from the menu,
select page Entry1, select quantity, click button, return to the Menu.php.
Select Entry2,Entry3 etc, all returning back to the menu until a button "Finished" is
pressed where values can be seen. But if the user goes back to Menu.php, the figures
are still retained in the system.
Additionally, if a user goes back into an entry page, I want whatever previous selections
were made to still be there. Can I do that. Many thanks