I've got a page that reads variables from the database and displays them in text boxes. I've noticed that if I have a string with multiple words and spaces, that it only displays the first word of the string in the text box, even tho the string is like it should be in the database.
For example:
Twin Turbo
displays:
Twin
[Here's the code:
print "<input type='text' name='model' value=".$myrow['Model'].">\n";
Any ideas?