|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2004-12-25 14:48 UTC] megabrain at fight-club dot ru
Description: ------------ I dont know wy it happens.. Trivia: MySQL 4.1.8 Base with CP1251 support PHP 5.0.3 Loaded mysql (not mysqli) extensions.. Any queries to base returns "?" where russian chars in base.. version 5.0.2 dont have this problems But under Apache2 with php loaded as module no problems too.. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 22 17:00:01 2025 UTC |
example: php 5.0.2 $result=mysql_query("select ru_name from mtable"); $runame=mysql_result($result,0,"ru_name"); print $runame; output: ???? php 5.0.3 $result=mysql_query("select ru_name from mtable"); $runame=mysql_result($result,0,"ru_name"); print $runame; output: ???? database is UTF8