Hi, im using this in a php mysql query...
i have a record in my db with 'id 'and 'round0group' fields (only the id has data in it).
what is the command to insert data in the 'round0group' field of the record with a certain id (say $id)
i have something similar to this... however, it just adds the new roud0group to a new record line. I was thinking i might need an "inset into values where id = $id .. but im new to this 🙁
// write the group number provided into
// the players own record in the
// round0group field
$query = "INSERT INTO tablename (round0group) VALUES ('$newform_round0group') ";
$result=mysql_query($query);
echo ("Your record has been updated with your new group ");
thanks in advance
de