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 ...
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
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 ...
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
142 views

html page hanging when posting file upload

I'm trying to add a file upload script in php to a website I'm designing. I've used an online example (I know it's not secure and I plan on making it secure, I just want the basic functionality ...
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 ...
0
votes
2answers
3k views

HTML forms: issues combining charset with enctype in Firefox

I have a Web site with a message board. The board lets people post messages and include attachments. I had a problem where my site was hiccuping every time someone wrote a post with non-Unicode ...