I\'m using excel 2010 professional plus to create an excel file. Later on I\'m trying to export it as a UTF-8 .csv file. I do this by saving it as CSV (symbol separated....
And for the people from Czech republic:
function convert( $str ) { return iconv( "CP1250", "UTF-8", $str ); } ... while (($data = fgetcsv($this->fhandle, 1000, ";")) !== FALSE) { $data = array_map( "convert", $data ); ...