Hi, I have a problem with processing a form when a slash is submitted. The form has a Zend_Form_Element_Text where a slash can be submitted. (name of the field is code) The method I use for the form is POST en the encType for the form is Zend_Form::ENCTYPE_URLENCODED
When the form is posted with for example code = 'a23/ef' to my controller/action. The url becomes ../controller/action/code/a23/ef and my controller can't recognize the code, because it is only reading the first part 'a23' and not the rest '/ef'. What I want to have is: ../controller/action?code=a23%2Fef , that way I can read the whole code. Can someone help me with this problem? Laurens -- List: [email protected] Info: http://framework.zend.com/archives Unsubscribe: [email protected]
