Hi,
Mysql table is not inserting special chars into the feild..
like this
what type collation i need to set. presentlyit is..utf8_general_ci
In addtion, my primary purpose is dumping some lname,fname,email csv into table. its stopping at these chars row.
my command is
LOAD DATA INFILE '".@mysql_escape_string($csvfilname)."' INTO TABLE tablemails FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '' ESCAPED BY '' (fname,lname,email) SET id = '0',mailok='1',listid='".$selistid ."'";
Thanks in advance.
sharma