Is there any way to disable characters being omitted from a text / textarea field?
Example, entering “x <> 5” results in a values of “x 5”
1 Answers
Hi,
Most likely it’s sanitizing it expecting XSS attack.
You can disable it by:
$col[“sanitize”] = false;
Your Answer