You had the right idea to use a form,
use the update record wizard, this will generate the update
sql required at the top of your page. You will need to modify this
code slightly by adding +1 .
if ((isset($_POST["MM_update"])) &&
($_POST["MM_update"] == "form1")) {
$updateSQL = sprintf("UPDATE table_name SET temascore=
broker_rating + 1",
GetSQLValueString($_POST['teamscore'], "int"));
Your form hidden field should be similar to
<input type="hidden" name="teamscore" value="<?php echo
$row_nameofrecordset['teamscore']; ?>">
all this is assuming you havea field in your db named
teamscore.
hope this helps a little