POST is being used.
Here's a sample...
http://www.ndorfnz.com/textarea.php
From what I have found it varies on when it will submit or not?
I have gotten it to submit around 1427 chars, but around 1490 it will not?
Could the "type" of chars within the textarea play part in this problem? Say like "/" or something? I have seen the number of chars that will submit decrease when "/" is present?
Just beyond weird to me!
Appreciate the insight!
EDIT...
Update...I did some adjusting of the form property tag. Before I had the action and post method shown separate. Once I put them withing the same form callout, it seems to work!?
It is now:
<form name = "log" ACTION="<?php echo $SERVER['PHP_SELF']; ?>" method="post">
Used to be:
<form name = "log">
blah blah...
<form ACTION="<?php echo $SERVER['PHP_SELF']; ?>" method="post">
Could that really have been the difference?