My ac is blowing hot air, I have replaced the pressure sensor (twice), I have verified that the clutch and the compressor works (I used a jump wire to activate it removing the relay), I have changed the controller, the system is supposed to have freon, but I'm not sure if the pressure is right.
Does anyone have any idea why the following code outputs
"This is the result: "
$sql = "SELECT MAX(patient_id) AS 'max_pat_id' FROM patient_information;";
$result = mysql_query($sql);
while ($row = mysql_fetch_row($result)) {
echo "This is the result: " . $row['max_pat_id'] . "<br>";
}
?>...
Does anyone have any idea why the following code outputs
"This is the result: "
$sql = "SELECT MAX(patient_id) AS 'max_pat_id' FROM patient_information;";
$result = mysql_query($sql);
while ($row = mysql_fetch_row($result)) {
echo "This is the result: " . $row['max_pat_id'] . "<br>";
}
?>...