Recent content by Felipe A

  1. F

    What is the right pressure readings for a dodge stratus 2002 ac system?

    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.
  2. F

    Problems processing special characters in a UTF-8 encoded XML document with PHP.?

    This is the code I have been using $html_special_chars_arr_char = array( 0 =>"/≥/", 1 => "/≤/",2 => "/>/" ,3 => "/</"); $html_special_char_arr_char_code = array( 0 => "≥", 1 => "&le",2 => "&gt" ,3 => "&lt"); $purpose_summary = preg_replace($html_special_chars_arr_char...
  3. F

    Question about mysql_fetch_row in php?

    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>"; } ?>...
  4. F

    Question about fetch not working in php for mysql.?

    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>"; } ?>...
Back
Top