I have these codes after database connection
mysql_query("SET NAMES 'UTF8'");
mysql_query("SET character_set_connection = 'UTF8'");
mysql_query("SET character_set_client = 'UTF8'");
mysql_query("SET character_set_results = 'UTF8'");
my php form has
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
in database I selected utf-8 general-ci and it has ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8
But I have this result in database: artıkolsunbutürkçe
How can I solve this problem for new insert? Thanks