Hi,
My <textarea> tag does not show its contents. Here is a small example
<form method="post" action="<? echo "$php_self"; ?>">
<input type="text" name="user" value="<? echo "$user"; ?>">
<textarea name="comment" value="<? echo "$comment"; ?>"></textarea>
When I do form verification on the above, eg.
if(!some condition)
{
display form again
}
the contents of <input type="text" is displayed in the form, but <textarea> always losses its contents.
Anybody knows why this happens? Thanks.
Richie.