I have a simple HTML input box within an update form that is populated with the current PHP variable value, which is assigned from a MySQL query. If I enter in any value and
This is because you are not using quotes in your value attribute. Please add them like this:
<input name="note" size="100" value="<? echo $note; ?>"></input>
It should be: