use mysql update instruction. If you want to execute exeute via php, then
first get the existing value using the select statement,
SELECT Attendees from <table-name> WHERE ID = 1
you get a visitor to an existing value, put it in a php variable, now concatenate your value. and then update,
UPDATE <table_name> SET Attendees=<new-value> WHERE ID=1
you will need to use the mysql php functions to execute the above queries
source share