Zend adds an enctype to all forms. What's that good for? and how can I remove it?
<form action=""
method="post"
enctype="application/x-www-form-urlencoded"
id="myform">
</form>
|
Zend adds an enctype to all forms. What's that good for? and how can I remove it?
|
||||
|
|
|||||||
|
|
It is not possible without patching Zend_Form class or deriving from it and overriding http://framework.zend.com/svn/framework/standard/tags/release-1.10.8/library/Zend/Form.php Look at the |
||||
|
|
|
If you want to remove it, you have to override the getOptions method of Zend_Form_Decorator_Form and remove the two lines below :
|
|||
|
|
|
It is an atribute used to identify what kind of form are you trying to post to the server. In this case it is saying that you send text information. In case you would like to send files e.g. sth more complex you should use "multipart/form-data" value of enctype. See http://www.w3.org/TR/html401/interact/forms.html#adef-enctype for more information. |
|||
|
|
enctypethere. – zerkms Oct 11 '10 at 3:53