ricmetal Posted May 20, 2010 Share Posted May 20, 2010 hi everybody im here reading about html form enctypes and learning how to treat international characters through html forms. i read than enctype=urlencoded is inefficiant for sending int chars, so should i use multipart when sending international characters? Link to comment https://forums.phpfreaks.com/topic/202367-international-chars-and-enctype/ Share on other sites More sharing options...
ram4nd Posted June 4, 2010 Share Posted June 4, 2010 int chars , you confuse people. In most cases you will not need to use this attribute at all. The default value (i.e. if you don't use this attribute at all) is "application/x-www-form-urlencoded", which is sufficient for almost any kind of form data. The one exception is if you want to do file uploads. In that case you should use "multipart/form-data". Link to comment https://forums.phpfreaks.com/topic/202367-international-chars-and-enctype/#findComment-1067527 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.