This article introduces how to receive HTTP POST requests in the PHP programming language.
<?php
// HTTP POST dev
file_put_contents("_hoge.txt" , $_POST["html"]) ;
$ curl https://exaple.com/ -X POST -d "html=hogehogehoge"
$ cat _hoge.txt
hogehogehoge[