prepare($sql); $stmh->bindValue(1, $num, PDO::PARAM_STR); $stmh->execute(); $row = $stmh->fetch(PDO::FETCH_ASSOC); $response = array( 'voc_alert' => $row["voc_alert"], 'ma_alert' => $row["ma_alert"], 'order_alert' => $row["order_alert"] ); } catch (PDOException $Exception) { $response = array( 'error' => $Exception->getMessage() ); } echo json_encode($response); ?>