I'm having trouble echoing collected info back out in a textarea after submit...if it's just a field, echoing out the variable works.
in the post/submit section:
$email = $POST['email'];
$have = $POST['have'];
Inside the form:
Agent's Email: <input name="email" type="text" value="<?php echo $email ?>" /><br />
Have:<br />
<textarea name="have" rows="2" cols="60" value="<?php echo $have ?>" >
</textarea><br />
After submitting, the form does show the $email, but not the $have.