I'm retrieving a string from a database that was entered by a form, but if the string is to long, it's generated with double quotes in the html. This is how I'm retrieving the data:
echo '<p>' . $descr['field_value'] . '</P>';
When I view the html source, the browser adds double quotes.
short single line strings do not show up with quotes.
Is there a way to force php to display strings without quotes?