A question which I hope someone can explain to me. I have a form which submits data using get
<form action="xxx" enctype="multipart/form-data">
blah - blah
</form>
This works fine up to 2000 chars due to the Get method. When I add the Post method attr, it doesn't work:
<form action="xxx" enctype="multipart/form-data" method="post">
blah - blah
</form>
Yet, if I remove the enctype attr it works fine:
<form action="xxx" method="post">
blah - blah
</form>
Yes, all the data in the form is text only. So why won't the post work with the enctype whereas the get does?
Thanks!
Paul Mele
DFAS-CL/TSTB
<form action="xxx" enctype="multipart/form-data">
blah - blah
</form>
This works fine up to 2000 chars due to the Get method. When I add the Post method attr, it doesn't work:
<form action="xxx" enctype="multipart/form-data" method="post">
blah - blah
</form>
Yet, if I remove the enctype attr it works fine:
<form action="xxx" method="post">
blah - blah
</form>
Yes, all the data in the form is text only. So why won't the post work with the enctype whereas the get does?
Thanks!
Paul Mele
DFAS-CL/TSTB