Hi all, this is realy driving me insane
I found this article:
http://mysecretbase.com/ColdFusion_and_Unicode.cfm and followed all steps.
This is my database:
CREATE TABLE `LProducts` (
`p_id` int(8) unsigned NOT NULL auto_increment,
`p_cat_id` smallint(2) NOT NULL,
`p_subcat_id` smallint(4) NOT NULL,
`p_name` varchar(64) NOT NULL,
`p_description` text,
`p_greek_description` text,
`p_price` float(100,2) NOT NULL,
`p_added` timestamp NOT NULL default CURRENT_TIMESTAMP,
`p_offer` float(100,2) default NULL,
`p_isOffer` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`p_id`),
KEY `p_name` (`p_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
In phpMyadmin everything looks okay.
This is what I get when exporting the database:
(3, 2, 10, ‘LDF7932ST’, ‘Looking for a dishwashing powerhouse? Look no further. With sleek, stainless steel looks and sophisticated features, this LG SteamDishwasher" fits the bill. And with a powerful but gentle TrueSteam" generator, integrated controls, ultra-quiet LoDecibel" Operation, and enough room for 16 place settings, you may begin to realize that it’‘s more than just a dishwasher it’‘s something better.’, ‘5 προγράμματα πλυσίματος
Θέση για 12 σερβίτσια
Mini Πρόγραμμα
Ρυθμιζόμενα συρτάρια
ALL IN ONE
Πρόγραμμα express 55 λεπτών
Χρώμα: Inox antitouch με full st/st πορτα
Ενεργειακή κλάση ΑAA’, 175.00, ‘2010-06-26 08:15:54’, 100.00, 1)
Off-line it works. Why isn’t it working on-line? Any help would be realy appreciated.