How to print all information from an HTTP request to the screen, in PHP February 25, 2023 by Tarik To get $_GET, $_POST, $_COOKIE: print_r($_REQUEST); If you want the headers: print_r(apache_request_headers());