Yes, thank You, I know.
What I mean is this:
the HTML for the inputbox will be something like this:
<input type=text name=box value="<?$databaserecord;?>"
but my problem lies with the select box:
<select name=select etc. etc. >
<option value="choice1" selected >choice1</option>
<option value="choice2">choice2</option>
etc.
Now that "selected " is what is the problem.
How can I get that to correspond with the choice the guy made originally.
Say in the original form he selected "choice1".
The databaserecord will the be "choice1", and not all of the choices available, because this is the records for just this guy's profile.
So when I do the Query, I know that originally this guy selected "choice1", but now when I want to have the selectbox again on the new form I want "choice1" to be 'selected '.
Obviously I will not put 'selected' in any of the options of the new form in HTML. I want PHP to do that to correspond with the original value.
Hope you understand what I mean.