I am getting first name from user through an input box as "Catho Fransis" and saving it to my mysql db into a single field.
When i am trying to display this name in another text box in another page, only "Catho" get displayed. The words after a whitespace is ignored.
<td>
<input disabled type="text" name="fname" style="width:235px;" value={{ user.first_name }} >
</td>
How do i display the name?