Dealing with eacute and other special characters using Oracle, PHP and Oci8
Hi I am trying to store names into an Oracle database and fetch them back using PHP and oci8. However, if I insert the é directly into the Oracle database and use oci8 to fetch it back I just receive an e Do I have to encode all special characters (including é ) into html entities (ie: é ) before inserting into database ... or am I missing something ? Thx UPDATE: Mar 1 at 18:40 found this function: http://www.php.net/manual/en/function.utf8-decode.php#85034 function charset_decode_utf_8($string) { if(@!ereg("[\200-\237]",$string) && @!ereg("[\241-\377]",$string)) { return $string; } $string =