for a form i've only done in the form of
<input type="text" name="whatever" value="<?php echo $HTTP_POST_VARS['value']?>">
but for this form i'm making, i need one text box to be like 30 rows and 30 columns or so. the only way i know how to do that is
<textarea rows="30" cols="30">stuff</textarea>
now, on the form i tried to replace that input type line with the textarea line so it would ook like this
<textarea rows="30" cols="30"><?php echo $HTTP_POST_VARS['value'] ?></textarea>
but that didn't work
any ideas of how i managed to screw this one up?