I'm having a little problem attempting to fill a html input value statement with php variable data.
$row["member_contact_info1"] contains '123 Main Street'
When the form is displayed, I can enter data '123 Main Street', the data is recorded into the database properly, the data is read from the database properly, the data is then displayed as '123' and the remaining characters are truncated.
Why is variable data being truncated after the 1st space? How can I use variable data with the html input value statement?
The example below shows variable data from an array but the result would be the same if I used ---- VALUE = $info1; where $info1='123 Main Street''