Skip to content
Advertisement

Tag: python-requests

Sending User input from python to php

This is my python file: This is my PHP Script: Problem my python file is not sending userdata to php script. Any help would be appreciated Thank you. Answer The problem is you are sending post data but in PHP script, you are capturing GET data. We can re-write both files like this to send POST data and capture POST

Advertisement