I have normal input with string. But when I want edit the article, the input show only several characters of string, not full string, why? And how can I fix this?
This is because the input string contains the gap between words?
// show only string
<input type='text' class='form-control' name='$name' value='string with gaps' required>
// show full
<input type='text' class='form-control' name='$name' value='stringwithgaps' required>