curl -X PUT https://userpages.umbc.edu/~jianwu/is651/programs/ch11/put.php -d "id=1&fruit=orange&quantity=4" This is a put request. It must send entire record. Must send all fields, even if only one changes. orange is the fruit There are 4 of them. => curl -X PATCH https://userpages.umbc.edu/~jianwu/is651/programs/ch11/put.php -d "id=1&fruit=apple" This is a patch request. It can do partial updates to an id. Possibly sends only one field such as the fruit. apple is the fruit There are the old quantity of them. */ ?>