1<?php
2
3ob_start();
4var_dump($_POST);
5error_log(ob_get_contents());
6ob_end_clean();
7
8?>