I am unable to pass proper data to MySQL I have no idea what is wrong done by me please help me out my code is as follow:
$con = mysqli_connect('localhost', 'root', '', 'database');
if($con) {
    echo "we are connected";
} else {
    die("connection failed");
}
if(isset($_POST['submit'])) {
    // echo "Yeah it works";
    $user = $_POST['username'];
    $pass = $_POST['password'];
    $query = "INSERT INTO users(username, password) VALUES ('$user', '$pass')";
    $result = mysqli_query($con, $query);
    if(!$result) {
        die("Query failed");
    }
}
When I run this code I'm getting 0 for username and 0 for password. whatever I type for username and password I get 0 in database.

 
     
     
    