First, here is the form I made, to use on a script for emailing my users:
<form action="<?php echo $_SERVER['PHP_SELF'] . '?' . $_SERVER['QUERY_STRING']; ?>" method="post" name="send_email_form">
<div id="form">
<p><strong>Subject:</strong><br>
<input name="subject" type="text" value="<?php echo $_POST['subject']; ?>" class="input" size="50">
</p>
<p><strong>Message:</strong><br><textarea name="message" cols="100" rows="10" class="input"><?php echo $_POST['message']; ?></textarea>
</p>
</div>
<div><strong>Please do not press the "Send Email" button more than once!</strong></div>
<div id="form" style="text-align: center;">
<p>
<input name="submit" type="submit" value="Send Email" class="input">
<input name="reset" type="reset" value="Reset" class="input"></p>
</div>
</form>
I then submit the form, and it seems that the data in the textarea does not get processed for some reason!
I did a print_r($_POST) and there is no value for the "message" field.
What's up!!!