Mysql
 sql >> Database >  >> RDS >> Mysql

Errore Android:il valore

Il tuo secondo bindParam() (Dovresti leggere e capire cosa fa esattamente questo metodo!) all'interno di if la condizione è una sciocchezza!

Cambia questo:

if($stmt->rowCount() > 0){

    $stmt->bindParam($badgeid, $email, $fullname, $roles_id, $team_id);
    $stmt->fetch();

    $user = array(
        'badgeid'=>$badgeid, 
        'email'=>$email,
        'fullname'=>$fullname,
        'roles_id'=>$roles_id,
        'team_id'=>$team_id
    );

a questo:

$result = $stmt->fetch(\PDO::FETCH_ASSOC); // Get results as array
if ($result) {
    // Since we only get the fields we want to send back, you can assign `$result` directly to `$response['user']`
     $response['user'] = $result; 

PHP ha generato un errore correlato, che avresti visto nella risposta grezza della tua richiesta!