Hi,
I decode my zend-form with htmlEntities. This works great, but I would like to decode the input back when I repopulate the form back to the user. Is there a way to reverse the setElementFilter in Zend?
Example:
User fills in input field with
You & me
Data placed in the database:
You & me
I get the data back from the database and populate the input field with it:
You & me
I just want my ampersand (in this case) back and see this:
You & me
Thanks in advance,