Hi All,
I want to know wheather I can update (add new data) to a row in mysql database table without replacing existings data.
Ex : There is a row that contains,
ID Name City Groups
1 John Colombo gamers
I want to add 'programmers' to John's Groups.
ID Name City Groups
1 John Colombo gamers ; programmers
How can I do this with php & mysql?