PHP script Oracle DB için aksanlı karakterleri kaydetme

0 Cevap php

Ben bir VARCHAR2 alanında bir Oracle DB aksanlı karakter (èòàèì) kurtarmaya çalışıyorum; Ben koydum

<html>
<head>
   <meta http-equiv="Content-type" value="text/html; charset=utf-8">
</head>
<body>
<?php
 header('Content-type: text/html; charset=utf-8');

.... //and here i make the insert into the DB:

$str=utf8_encode("JeanPièrre"); // or $str="JeanPièrre" ... is the same, it does not run
$sql="insert into TABLE(nvar) values('".$str."')";
$stmt = oci_parse($ora_conn, $sql) or die(oci_error().$query);
oci_execute($stmt);

Ama aksanlı karakter doğru kaydedilmedi i JeanPi görmek? Rre

Ben ne yapabilirim? Pls :-( bana yardım

Thanks in advance ! c.

0 Cevap