You can use a script like this to retain data (JavaScript): http://www.dynamicdrive.com/dynamici...tosaveform.htm
You can also use PHP to post the data back to the form field once it has been submitted - something like this (very simple example);
Top of page;
PHP Code:
$comment = $_POST['comment'];
Markup;
PHP Code:
<input type="text" name="comment" value="<?php echo $comment ?>">
or
PHP Code:
<textarea name="comment"><?php echo $comment ?></textarea>
If you need more help, please provide a copy of your script.
Bookmarks