Send post data to website

does 000webhost supports sending data using other programs to your website?
like sending data using python to your php script

You could send a get request within the url
https://yourwebsite.000webhostapp.com/get.php?data=x&data2=y

thank you for your quick reply sir.
what is the meaning of data = x & data2 =y sir?

Means x is your data 1, and y is data 2.
You could as much as you want.
Then in the PHP file to them:

<?php
$data = $_GET['data'];
$data2 = $_GET['data2'];

Thank you for the help sir

1 Like