I desperately need to know how to do the following:<br>I have a mysql table with a field entitled Wins. There will be new entries for certain people with a value in the Wins column. Example, each week someone submits a Win value and I have it stored in the database. I need to know how to write a php script that would ADD up the values stored in the Wins Column for each different person:<br><br>Name Wins<br>Tom 3<br>Tom 2<br>Ed 6<br>Bob 5<br>Bob 2<br>Bob 1<br><br>For example, I'd like the script that would display calculate the total of the wins column for each person and display it in html<br><br>Bob 8<br>Ed 6<br>Tom 5<br><br>Any help would be appreciated. I have only been learning php for a month or so now and have advanced pretty well until this problem<br><br>Rhyan