I tried requests module but I've error in my php outputs: The error is: Notice: Undefined index: firstname in D:\xampp\htdocs\myfile\receive.php on line 7 NULL
code in python:
'''
payload = {'firstname':'Jack'}
url = "http://localhost/myfile/receive.php"
resp = requests.post(url, data=payload)
print(resp.status_code)
text =resp.text
print(text)
'''
status_code is ok(200)!
php code:
$data = $_POST["firstname"];
var_dump($data);
It seems okay but it's not :)
var_dump($_POST);to see what you get in php script.