Forum Replies Created

Viewing 1 replies (of 1 total)
  • I got the same problem today.

    This problem was reported two month ago, but the same problem is still happening. Interesting.

    Please make the code working only for MySQL if you are not sure about the compatibility.

    from

    $utfquery = “SET NAMES ‘utf8′”;
    $resultutf = db_functions($driver,”query”,$resource,$utfquery);

    to

    if ($driver == “MySQL”)
    {
    $utfquery = “SET NAMES ‘utf8′”;
    $resultutf = db_functions($driver,”query”,$resource,$utfquery);
    }

Viewing 1 replies (of 1 total)