Perhaps the problem is that you create you're input fields like this (php inserts the data):
Code:
<input type=text value=the value of this field name=fieldname>
the browser will only place "the" as default value in the input field.
perhaps this is you're solution.
Code:
<input type="text" value="the value of this field" name="fieldname">
If this is the problem it should be visable in the form.
could be something else though.
Greetz Daan