Hi there
I want to translate phpbb forum I have to punbb. Everything works, but our special codes are lost using mysql 5 :-( The letters ??žš???ŽŠ? are changed for ???? or empty boxes. This is a know problem for me and I usually get past it using the SQL statements:
SET CHARACTER SET latin2
SET NAMES latin2
But this converter is so complex, I am not sure where to put this two requests :-( They should be before anything is read from database and before anything is wriiten to database.
an the author of this great tool or somebody else plese help me?
I put this:
$query = 'SET CHARACTER SET latin2';
$db->query($query);
$query = 'SET NAMES latin2';
$db->query($query);
info function insertdata before the INSERT is made, but doesn't seem to help :-(
Yours
Jerry