PHP code:
<?php
$data=$_POST['data'];
echo $data;
?>
When I do that, the HTML page that Python prints notifies me that PHP
did not receive any value in $data
I.e:
Error in $name; undefined index
However, when I send the data as GET (http://localhost/mine.php?data=data
) and change the PHP method from POST to GET ($data=$_GET['data']
), the value is gotten and processed.
My main issue here is that it seems the value in data does not go through to PHP as I would have wanted to use POST. What could be wrong?