I have a change register screen. The information that will be changed I bring to an input field, allowing the user to move if necessary.
However, a problem occurs if the word is separated by 'space', that is, if the user types "Olá mundo"
, it only goes to the input field "Olá"
.
HTML:
<a a class="arib">Origem: </a><input type="text" maxlength="40" placeholder="Origem" value=<?php echo $Origem; ?> name="origem" style="width:50px;"/>
PHP:
<?php
$Origem = "Olá Mundo";
?>