Hey I'm a newbie and have a question about addslashes. In the databse the field is complete like: Waldemar Brand Neto, but when I get the field from it the return is trunved like Waldemar. How cam I fix that? Thank´s.
<?php $nome=addslashes($linha['nome']); echo "<input name=nome type=text size=60 maxlength=60 value=$nome>"; ?> Result : Waldemar and the correct is: Waldemar Brand Neto