I have a form that takes user input and converts it to uppercase.
Very simple, just for my own use really.
However, if I input something like "it's" it returns "IT\'S"
How would I escape this and any other characters like this?
My code is simple:
<?
$utext = strtoupper($text);
?>
dienovember.com/case.php (for reference)
Thanks.