I looking through different post regarding prepared statements. I am getting the following error
ERROR: Could not prepare query: INSERT INTO contact (, ,) VALUES (?, ?). You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' , , , ) VALUES (?, ?)' at line 1
I can't seem to figure out why I am getting this error. Everything I find online hasn't been helpful. I am hoping someone can point me in the right direction.
    // Check connection
     if($link === false){
     die("ERROR: Could not connect. " . mysqli_connect_error());
      }
    // Prepare an insert statement
   $sql = "INSERT INTO tablename (name, email) VALUES (?, ?)";
   if($stmt = mysqli_prepare($link, $sql)){
   // Bind variables to the prepared statement as parameters
   mysqli_stmt_bind_param($stmt, "ss", $name, $email);
   // Set parameters
   $name = $_REQUEST['name'];
   $email = $_REQUEST['email'];
   // Attempt to execute the prepared statement
   if(mysqli_stmt_execute($stmt)){
    echo "Records inserted successfully.";
      } else{
    echo "ERROR: Could not execute query: $sql. " . mysqli_error($link);
    }
   } else{
   echo "ERROR: Could not prepare query: $sql. " . mysqli_error($link);
    }
   // Close statement
   mysqli_stmt_close($stmt);
   // Close connection
   mysqli_close($link);
   ?>
Thank you,
 
    