I'm using the following to set the value of a text area..
<?php
$message = $_REQUEST['message'];
?>
<br/><b>Description</b><br/>
<TEXTAREA NAME="message" COLS=40 ROWS=6 value="<?=$message;?>"></TEXTAREA><br/><br/>
<input type="hidden" name="MAX_FILE_SIZE" value="1000000" />
but it doesn’t appear to be working. The value of message is not null. Does anyone have any idea why it's not filling the value?
$_REQUESTvariable, if you're planning on using that data for anything more than just putting it back into a form. Based on yourvariables_orderdirective (php.net/manual/en/ini.core.php#ini.variables-order), a user could potentially overwrite themessagevariable without you knowing. -- php.net/manual/en/reserved.variables.request.php – Jeff Rupert Jul 23 '10 at 12:46