This topic is locked

General question

3/11/2009 7:27:47 AM
PHPRunner General questions
S
s.kahya author

On the project setting I chose language and regional setting as Turkish and output code page as Turkish(Windows) or Turkish(Iso).Even though some of the turkish characters work (such as " ç,ü,ö " ), some of them do not work such as " İ, ş,ğ,ı " Could you please inform me how can I fix that problem??
Pls see the demo below and let me know if there anything I can do.
http://demo.asprunner.net/selcuk2007_gmail...c/seri_list.php
Thanks much!

Alexey admin 3/12/2009

Hi,
the Publish on Demo Account procedure doesn't fully support non-English characters.

However when I enter turkish characters there they are saved properly.
Do you have any problems running your project at your server ?

D
danaci 3/12/2009

selcuk insert this code into dbconnection.php(kardeş görüşmek istersen halildanaci@hotmail.com sorunları beraberce çözelim)
<?php
function db_connect()

{

global $host,$user,$pwd,$errstr,$sys_dbname,$port,$bSubqueriesSupported;

$strhost=$host;

if($port && $port!=3306)

$strhost=$strhost.":".$port;

$conn = mysql_connect($strhost,$user,$pwd);
mysql_query("SET NAMES 'latin5'");

mysql_query("set SESSION character_set_client = latin5 ");

mysql_query("set SESSION character_set_connection = latin5 ");

mysql_query("set SESSION character_set_results = latin5 ");