to increment a value of a row in a mysql database using php, you can use

UPDATE ThisTable SET counter=counter+1 WHERE id=1


the above will increment the counter plus one in the ThisTable table where the id is equals to 1

hope that helps