Right now I have an automated donation system.
when they donate, the product id and their username is stored in a database, when they retreive their item, they're removed from the database
what i am thinking of doing is.... logging their username, how many times they've donated, and how much they've donated
this is the current logging
mysql_query("INSERT INTO donation (username, time, productid, price, tickets) VALUES ('" . $user . "', '" . $date . "', '" . $prodid . "', " . $amount . ", " . $amountTickets . ");");
what i want it to do is submit it to a new table, "amounts" the username, 1, $ spent and if they're already there add +1 to the 2nd field (times donated), and $ spent + new $ spent
i'm not very intelligent when it comes to mysql so any help would be appreciated
SUMMARY i want a sql query that will make a new field in a table called (amounts) if the field already exists, add onto the fields in it fields: username, times donated, amount donated
basically if someone named frank donates $10
frank, 1, 10
if frank donates another 20
frank, 2, 30
if joe donates 15 after that
frank, 2, 30
joe, 1, 15