29-03-2011, 01:49
Plik ma napewno kodowanie UTF-8, strona Garwolinskie Info ma ustawione kodowanie UTF-8
Może to być :
Może to być :
Kod PHP:
-- Struktura tabeli dla `phpbb_topics`
--
CREATE TABLE IF NOT EXISTS `phpbb_topics` (
`topic_id` mediumint(8) unsigned NOT NULL auto_increment,
`forum_id` smallint(5) unsigned NOT NULL default '0',
`topic_title` char(60) character set utf8 collate utf8_polish_ci NOT NULL,
`topic_color` varchar(8) character set ucs2 collate ucs2_polish_ci default NULL,
`topic_title_e` char(100) character set utf8 collate utf8_polish_ci NOT NULL,
PRIMARY KEY (`topic_id`),
KEY `forum_id` (`forum_id`),
KEY `topic_moved_id` (`topic_moved_id`),
KEY `topic_status` (`topic_status`),
KEY `topic_type` (`topic_type`),
KEY `topic_poster` (`topic_poster`),
KEY `topic_last_post_id` (`topic_last_post_id`),
KEY `topic_first_post_id` (`topic_first_post_id`),
KEY `topic_vote` (`topic_vote`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=56 ;