I have a grid I previously had on an old version of gridphp – the data I need to enter includes the greater-than and less-than symbols – which doesn\’t seem to be possible in the new version. I\’m guessing this is stripping HTML? Is it possible to turn that off and allow these characters < > Thanks
2 Answers
You can try disabling input sanitization by following option in set_options function.
$opt["sanitize"] = false;
Your Answer

