I'm trying to echo an address in a form field. However, it will only echo until it hits a space character. There are not constraints on the form. I'm wondering what’s causing it to stop on a space?
Example:
Address = 56423 Test Avenue
Result = 56423
echo "<td width=43% height=21 bgcolor=#E3E3E3><font size=1 face=Verdana,Helvetica,Arial color=#000080><input name=form_address size=20 value="; echo $line["address"]; echo"></font></td></tr>";