I have a field in my mysql table that I want to update.
Example: In my database the field amount has a value of 4 and I want to add 6 to the value.
How would I add 6 to the existing value???
This is what I have so far but this just deletes the existing value and adds a new one:
mysql_send("UPDATE peopletable SET amount='$amount' WHERE id='100' ");