Skip to content

Commit

Permalink
Corrigindo issue [#232]
Browse files Browse the repository at this point in the history
  • Loading branch information
FlameOff committed Sep 25, 2024
1 parent b4ef496 commit a9f3cc5
Showing 1 changed file with 20 additions and 9 deletions.
29 changes: 20 additions & 9 deletions html/saude/exibir_medicamento.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
<?php
require_once'../../dao/Conexao.php';
require_once '../../dao/Conexao.php';
$pdo = Conexao::connect();

$sql = 'select * from saude_tabelacid';
$stmt = $pdo->query($sql);
$resultado = array();
while ($row = $stmt->fetch()) {
$resultado[] = array('id_CID'=>$row['id_CID'],'descricao'=>$row['descricao']);

try {
// Consulta antes de enviar o json
$sql = 'SELECT id_CID, descricao FROM saude_tabelacid';
$stmt = $pdo->prepare($sql);
$stmt->execute();

$resultado = array();
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
$resultado[] = array('id_CID' => $row['id_CID'], 'descricao' => $row['descricao']);
}

echo json_encode($resultado);
} catch (PDOException $e) {
// Em caso de erro, você pode registrar ou lidar com a exceção de forma apropriada
error_log('Database error: ' . $e->getMessage());
echo json_encode(array('error' => 'Unable to fetch data'));
}
echo json_encode($resultado);
?>

?>

0 comments on commit a9f3cc5

Please sign in to comment.