This document summarizes how to build RESTful web services with PHP. It discusses REST principles like using HTTP methods (GET, POST, PUT, DELETE) to manipulate resources identified by URIs. It also discusses how PHP supports REST through variables like $_SERVER and $_POST/$_GET. The document then outlines the author's RESTful framework for PHP, which defines resources as classes that handle different HTTP methods, and uses URIs and MIME types to access various representations of resources.