
February 21st, 2013, 06:10 PM
|
 |
Still alive
|
|
Join Date: Mar 2007
Location: Washington, USA
|
|
So it is the database.
With your Python try adding a charset=utf8 to the constructor (instead of a SET NAMES).
Code:
con = MySQLdb.connect( db = 'nikos_pelatologio', host = 'localhost', user = 'nikos_nikos', passwd = '*******', charset = 'utf8' )
How does the PHP script connect?
|