php file working in localhost server but not in cpanel
if($_SERVER['REQUEST_METHOD']=='POST'){ //this is my database include 'db.php'; $con = mysqli_connect($servername,$username,$password,$dbname); //inputs $email = $_POST['email']; $password = $_POST['password']; $phone = $_POST['phone']; //checking query $Sql_Query = "select * from user_info where email = '$email' and password = '$password' and phone = '$phone'…