I made a query and I want to use fetch collum according to a response from the other site;
$query = $pdo->prepare("SELECT b.**, b.**, b.**, b.**, b.**, b.**, b.**, b.**, b.**, b.**, b.token FROM tbl_contas AS b");
$query->execute();
$iToken = $query->fetchColumn(11);
$tokenHash = $iToken['token'];
Why does not the token return the variable $tokenHash
?