Form not working properly
Hi,
I have a html form that has its components values set from a database.
I have a string like so $message = "got milk";
And i insert it into a textbox like so:
<input type="text" name="message" value=<?php echo $message;?> >
And when I load the form the text box only shows "got" and not the "milk" also.
Anyone offer some help... Thanks
|