Thanks for your reply... but No joy...
the one file displays the equivalent of two pages... so the html has
(psuedo code)
if ((no user chosen) and (display = true))
list names
//works first time in from calling program
else
<form name="Form" action="pagename.php" method="POST">
<input type="hidden" name="UserID" value="<?php echo $UserID; ?>">
edit values for chosen user
//displays correctly
save/cancel
For save the screen values -> table and
Header("Location: contacts.php?SUserID=$SUserID");
I thought adding a Form to the if part of display would get the $UserID but no joy.
It works for the else part of the display.. so I really don't understand!
help please?
Beth