[Solved] How to get variables using POST in PHP


It’s not possible to get variables from the URL as POST, you need to use GET.
This is how they built it. POST variables are not accessible from the URL, its more secure, and are used for sending Usernames, Passwords.

Refer this for more info.

solved How to get variables using POST in PHP