if($newpitmen<$whatever_the_maximum_is)
mysql_query("UPDATE ....");
Ditto for the other fields.
Or, smarter, would be to write just one query to update all three fields simultaneously. Build the start of the query, use the if statements to attach the appropriate updates if they're valid, and then tack the WHERE clause on the end.