I'm building a dynamic form in Kohana and notice that it is doing the following:
echo "'";
results in
'
in the output instead of a literal ' character.
I suspect its xss_clean getting in the way which is normally a good thing, but if I want to avoid it I have to code differently when I need a literal ' output to the page.
e.g.
echo form::input($id"['did'", $did);
results in output looking like.
<input type="text" name="1['did']" value="12345" />
Yuck!
suggestions anyone?