So, I'm working with PHP and prepared statements sent to a MySQL database. I've ran into a problem that I can't quite debug. Here is my code:
        // Check if the input username is in the database
  $stmtQuery = "SELECT * FROM updatedplayers WHERE Player=?;";
  $preparedStmt = $dbc->prepare($stmtQuery);
  $preparedStmt->bind_param("s", $setUsername);
  $preparedStmt->execute();
  $preparedStmt->bind_result($resultUUID, $resultUsername);
  $preparedStmt->fetch();
  // If it's not, kill the page.
  if ($resultUUID == null) {
   incorrect();
  }
  
  $stmtQuery = "SELECT Password, Salt FROM logins WHERE UUID=?;";
  echo 'flag1 ';
  $preparedStmt = $dbc->prepare($stmtQuery);
  echo 'flag2 ';
  $preparedStmt->bind_param("s", $resultUUID);
  echo 'flag3 ';The fist prepared statement works fine, it's at the line $preparedStmt->bind_param("s", $resultUUID);. There are also a couple other prepared statements before these, so I know I'm doing this correctly, but I'm not too sure about the last statement.
The code just seems to stop running after echo 'flag2 ';, which I put there to find the specific line. I don't get any error messages, it just doesn't print out flag3.
I've tried replacing $resultUUID with a static string, yet I get the same outcome. Also, I know my SQL statement is correctly formatted, I've tested within the console manually.
That's pretty much it, I'd love to hear some criticism, as I am new to PHP. Also, is there any way to get a better idea about the errors I get, instead of trying to pinpoint the error myself? Thanks!
 
     
     
     
    