Tagged Questions
16
votes
4answers
1k views
Why not always use enctype=“multipart/form-data”?
When building HTML forms why do we not always use enctype="multipart/form-data"?
4
votes
3answers
716 views
html form enctype
In HTML forms containg file uploads, enctype="multipart/form-data" attribute has to
be set. This much I know. But why? What exactly does it change?
How does it differ from ...
2
votes
2answers
66 views
Sending special characters in HTML form
I have an input field (which is filled automatically) with the format name <myemail@host.com>. I gave the form enctype="application/x-www-form-urlencoded", but when I retrieve it in PHP, it ...
2
votes
8answers
1k views
Firefox Upload Form Issue
I've created an upload script in php that takes a file, resizes it, and creates a cropped square thumbnail. The script itself seems to work fine.
However, when I tried to upload an image through ...
1
vote
1answer
33 views
Is it better to use htmlentities when sending html emails with special characters?
I have phpmailer setup to send emails from the contact form. I have the page set to UTF-8 character encoding and specify the email encoding as UTF-8 as well within PHPMailer. This all works fine and ...
1
vote
1answer
67 views
Behaviour change when enctype attribute missing on <form> tag
I recently switched from a VPS server to a dedicated server. For some reason, on a custom CMS I was working on, all the forms stopped working. Instead of processing the block of execution under ...
1
vote
3answers
5k views
is application/x-www-form-urlencoded default for html form?
I found out that HTML form supports only two enctype types. They are application/x-www-form-urlencoded and multipart/form-data. I understand that I use multipart/form-data when I need to upload a ...
1
vote
2answers
499 views
How to post a HTML form using Javascript that has both “application/x-www-form-urlencoded” and “charset=UTF-8” in the Content-Type header
I need to be able to specify using Javascript how to post a form that contains both the enctype as "application/x-www-form-urlencoded" and charset as "charset=UTF-8" in the Content-Type header. Any ...
1
vote
3answers
412 views
ColdFusion/Linux multipart/form-data encoding file upload issue
I'm posting a form in ColdFusion on Linux. Form has a file field. CF requires the enctype="multipart/form-data" attribute on the form tag. If I have this, I get a "JRun Servlet Error - 500 No such ...
0
votes
0answers
51 views
jQuery form plugin fails to catch response 404, 500 etc. if form enctype set to “multipart/data”
I'm trying to catch server errors (400, 404, 500) upon submitting my form via jQuery AJAX form plugin. (BTW I'm not trying to upload anything)
After reading carefully I found out that "statusCode" ...
0
votes
0answers
50 views
enctype multipart form-data input-field Access
I have a JSP-Page with a form with enctype="multipart form-data:
<form enctype="multipart/form-data" name="upLoadForm" method="post" action="aktionFileUpload.do">
<input type="file" ...
0
votes
1answer
75 views
Why isn't my form being submitted?
I've got a simple HTML form, thus:
<html>
<head></head>
<body>
<form action="upload_file.php" method="post" enctype="multipart/form-data">
<input ...
0
votes
1answer
333 views
url encoding, Form encoding and mailto: encoding
I am a little bit confused about the whole encoding issues related to HTML. I am not refering to the charset in the headers or encoding in the XML prologue. That I get. Lets me explain.
When the ...
0
votes
3answers
785 views
POST to PHP with enctype='multipart/form-data'
NOTE: The issue was resolved, I was apparently editing the wrong file. Silly me. Thanks
I am using an image upload script that posts file to the a PHP script that then saves the file to the server. ...
0
votes
2answers
197 views
Does Dreamweaver add enctype=“text/plain” to forms automatically?
I have some forms that post to a CGI script. I set them up and they work perfectly on all browsers. Then I leave them alone.
A few days later, after designers have updated the page, the forms no ...
0
votes
1answer
87 views
Enctype not working on MAC browsers
This is strange, but I have a web form in one of my sites that uploads files correctly on Windows browsers but not on Mac browsers and I'm pretty confident it has to do with the Enctype. I've ...