enter the points in the form use a submit button that goes to a processing php file then pull the form out by using its name
$_POST['namehere'];
then pull the old value from the database VIA sql query into a variable
then add the values into a varible
$total = $_POST['namehere']+$old
then use a update query.
$query = "UPDATE TABLENAMEHERE SET FIELDNAMEHERE ='$total' WHERE PERSON='name'";
mysql_query($query);