View Single Post
Old 01-22-2008, 05:00 PM   #4 (permalink)
xenon
The Frequenter
Newcomer 
 
xenon's Avatar
 
Join Date: Dec 2007
Location: Bucharest, Romania
Posts: 438
Thanks: 3
xenon is on a distinguished road
Default

Actually, the POST forms have by default application/x-www-form-urlencoded as the enctype (multipart/form-data must be used in order to be able to upload files). The text/plain enctype specifies that the document in question (the form in your case) is a text container. Therefore, the form doesn't really exist anymore, as form data must be serialized before submitted to be processed server-side. Since you were using plain text as the form's contents, there was no data to submit.
__________________
I have optimistic thoughts, even though sometimes (if not always) life's a bitch.
xenon is offline  
Reply With Quote
The Following 2 Users Say Thank You to xenon For This Useful Post:
EyeDentify (01-23-2008), StevenF (01-22-2008)