I have a simple upload form to upload txt files, then I use
$text = fread($fp, filesize($tmpName));
to store the content.
Uploading txt files works great, the only hickup is that special characters such as èà etc... don't show up.
Please help, I'm not exactly sure how to correct this.