I have a login page in php/html. In this, data is sent through POST via html form.
But when I send POST data from Postman, it is not sent at all.
On the contrary where I change $_POST["phone_number"] to $_GET["phone_number"] in php side, its working fine.
Can anybody tell why is this happening and any possible solution.
Thanks
Select "urlencoded" from postman while you are sending request throught it. Also set method as a post and use url like "aaaa.php".