Hi,
I have a form where I prepopulate values from my db. Something like this:
echo '<input type="text" name="subject" value="'.$myValue.'">';
It works fine until the string has quotes, then iut just cuts off at the quote, Example:
$myValue = 'This is my "NICE" string';
In the form I'll only see This is my
Not sure how to resolve it without stripping the quotes which I don't want to do since the Quotes are there for reason...
😕