Im trying to make a note saving system. I have an html login page, and when user logins, a form appears to enter some notes to store. I have 3 columns in my mysql database: username, password and storedData.
For example lets say that a user has these : Username:david | Password:david | StoredData: apple,orange
.
Is there a way to execute a query, so when user comes back and add another note NOT to overide the previous notes(apple, orange)
instead, to add another note to the database like: I add banana. Now the database should be StoredData:apple,orange,banana
.