How can I pass an apostrophe in an action or form?
I do have a form in lib/. It looks like this:
'input' => new sfWidgetFormInputText(array(), array('value' => ' \'\' '))
I really want to pass the apostrophe. Is it possible? This was \' doesn’t work. How can I do this?
Thanks!
Gunnar
This is working:
Double quotes are needed!
Thanks again to Randorn and then tokdzwinel!
Gunnar