At first I thought this error had to do with a timeout problem, but now I am
almost certain it has direct bearing on the size of the data that I am
posting.
I am using a simple form:
<?php
$contents = "a bunch of text";
?>
<form enctype='multip art/form-data'
action='http://www.mysite.com/phpform/forms/process.php' method='post'>
<textarea name='Comment' rows=11 cols=60 ><?php echo $contents ?>
<input type=submit value='Submit'>
<input type=reset value='Cancel - do nothing'>
There are actually more fields than i am depicting here. Two of the fields
allow for textarea input. Depending on how much text I put into one of
these fields, when I press Submit, IE presents me a screen with the contents
of what i entered and ending with:
Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Transfer-Encoding:
chunked Content-Type: text/html 0
After a few seconds, the script that was called finally runs, and does so
normally.
I'm quite puzzled by this. Has anyone seen this phenomena before? Where
should I begin looking for a solution??
Mark Richards
Boston
almost certain it has direct bearing on the size of the data that I am
posting.
I am using a simple form:
<?php
$contents = "a bunch of text";
?>
<form enctype='multip art/form-data'
action='http://www.mysite.com/phpform/forms/process.php' method='post'>
<textarea name='Comment' rows=11 cols=60 ><?php echo $contents ?>
<input type=submit value='Submit'>
<input type=reset value='Cancel - do nothing'>
There are actually more fields than i am depicting here. Two of the fields
allow for textarea input. Depending on how much text I put into one of
these fields, when I press Submit, IE presents me a screen with the contents
of what i entered and ending with:
Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Transfer-Encoding:
chunked Content-Type: text/html 0
After a few seconds, the script that was called finally runs, and does so
normally.
I'm quite puzzled by this. Has anyone seen this phenomena before? Where
should I begin looking for a solution??
Mark Richards
Boston
Comment