I am trying to append to a field in a mysql database.
For example in field NOTES- I may have-
THIS IS A TEST
I then want to be able to add/append/update????-
TEST IS OVER
And in the DATABASE it would show-
THIS IS A TEST
TEST IS OVER
I currently use
$sql = "UPDATE logins SET notes='$notes' WHERE id='$id'";
but this replaces what I have in field already. Any suggestions?
Thanks
For example in field NOTES- I may have-
THIS IS A TEST
I then want to be able to add/append/update????-
TEST IS OVER
And in the DATABASE it would show-
THIS IS A TEST
TEST IS OVER
I currently use
$sql = "UPDATE logins SET notes='$notes' WHERE id='$id'";
but this replaces what I have in field already. Any suggestions?
Thanks