I have a problem with displaying variables in a form in HTML.
My string is stored in a variable called
$address.
The problem is that when I want to set this value in a form it only displys the text until the first "space".
e.g
$address = 12 some road somewhere
echo"<input type=text name=address value=$address>";
only 12 is displayed.
I need to use this to edit details for members, what is the problem and how can I solve this..??