Perhaps what you're asking is how to pull up default values for the fields?
If so all you have to do is set a default value to the html input field
<?PHP
echo "<form action='formaction.php'>\n";
echo "<input type='text' name='variable' value='$variable_default' size='whatever'>";
echo "</form>";
Write back if this doesn't answer your question...
?>