I have an array value of let's say
20" below grade
or I might have a value like
8' above grade
Because the value property is delimited with ", the following code cuts off the quote and trailing text when streamed out like this
Of course I could just change it to single quotes and I would be ok until the user types in the second option.
Perhaps this is a HTML question, but how can I escape the double quote so it will properly stream out?
I tried escaping the the double quote with the \ as in "20\" below grade", but that just outputs 20\.
any suggested help would be appreciated.
20" below grade
or I might have a value like
8' above grade
Because the value property is delimited with ", the following code cuts off the quote and trailing text when streamed out like this
Code:
<td><input type="text" name="Description" value="<?php echo $thisValue; ?>"></td>
Perhaps this is a HTML question, but how can I escape the double quote so it will properly stream out?
I tried escaping the the double quote with the \ as in "20\" below grade", but that just outputs 20\.
any suggested help would be appreciated.
Comment