I'm developing a web based software that uses MySQL and PHP on the backend.
I'm trying to obtain data with a complex query and in the end I just obtain the query.
   function consulttimes(){
$pdo = connect();
 try{
    $consult = $pdo->prepare("SELECT credentials.realname, timestamp_greenhouse.* FROM times.credentials, times.timestamp_greenhouse WHERE timestamp_greenhouse.id = credentials.id;"); 
    $consult->execute();
    $consult->fetch(PDO::FETCH_ASSOC);
    echo json_encode($consult); 
    //file_put_contents('times.json', $json);
}
catch(PDOException $e) {
    echo $e -> getMessage(); 
}
}
I have all the databases and the query works perfectly on phpmyadmin. Can someone help me with this?
Cheers!
 
     
    