Hi all, I noticed a bug with the Web_Api component.
To connect to a MySql database I launch php scripts that I have on my web space.
And it works fine.
But if I pass parameters with POST method these do not arrive in the script.
The following script gives me empty result…
<?php echo = $_POST['type'] . " " . $_POST['p'] ; exit; ?>If I use the GET method in the script instead, it works even though I used the Post method in the call.
<?php echo = $_GET['type'] . " " . $_GET['p'] ; exit; ?>How to solve the problem?
Thank you