I have created the database and the table and the connection with the database was successful but the data is not being sent to the database
<?php
$mysqli = mysqli_connect('****************', '***************', '*************', '******posts');
if ($mysqli) {
    echo "conn established";
} else {
    echo "conn failed";
}
if (isset($_POST["submit"])) {
    $one = "one";
    $two = "two";
    $three = "three";
    $four = "four";
    $five = "five";
    $push = mysqli_query($mysqli, "INSERT INTO articles 
        (id,title,thumbnail,upvotes,views,url) 
        VALUES ('$one','$two','$three','$four','$five')");
    if ($push) {
        echo "---------pushed----------";
    } else {
        echo "-----not pushed----";
    }
}
 
     
     
    