I have a simple t1.php file which has:
<?php
var_dump($_POST);
?>
and a simple python file which has:
import requests
print requests.post("http://localhost/tempo/t1.php", data={"a":{"b": "c", "d": "e"}}).text
and when I run the python file I get:
array(1) {
["a"]=>
string(1) "d"
}
The question is, where are other parameters and values?