The code only returns me the first line of the table for the patient ID
<?php
require 'conexao.php';
// Recebe o id do exame do exame via GET
$id_exames = (isset($_GET['id'])) ? $_GET['id'] : '';
// Valida se existe um id e se ele é numérico
if (!empty($id_exames) && is_numeric($id_exames)):
// Captura os dados do exame solicitado
$conexao = conexao::getInstance();
$sql = 'SELECT id,codigo,data,exame,data2 FROM historico where id='.$id_exames;
$stm = $conexao->prepare($sql);
$stm->bindValue(':id', $id_exames);
$stm->execute();
$exames = $stm->fetch(PDO::FETCH_OBJ);
endif;
?>