I have a string pulling from a database that has spaces in it.
i.e. This is a brown car
This info is entered into a text box for a user to update the description.
i.e.
$string = "This is a brown car";
<input type=text name=car value=$string>
When the info is displayed in the text box only the first word up to the space is displayed. How can I get all of the words to display with the spaces.
Thanks