Hi all when i try to display this word : INTERMARCHÉ
from my MySql data base i got null, help please :)
the collation for the corresponding column is utf8_unicode_ci
EDIT
$nomsDesStations=$this->db->query('SELECT DISTINCT ssiphone_enseigne from ssiphone_recherche where ssiphone_enseigne开发者_如何学JAVA!="AUTRE"');
array_push($tousLesNomsDesStations,"");
while($enseigneEnCours=$nomsDesStations->fetch()){
array_push($tousLesNomsDesStations,$enseigneEnCours['ssiphone_enseigne']);
}
and for display :
foreach($tousLesNomsDesStations as $valeur){
echo $valeur['ssiphone_enseigne']."<br />";
}
精彩评论