when i use the following .....
$handle = fopen ($file, "a+");
if (!fwrite($handle,$content)) {
print "Cannot write to file ($filename)<br>";
exit;
}
// print $count.") Success, wrote ($content) to file ($file)<br><br>";
$count++;
fclose($handle);
in win xp pro the csv file seems fine with everything being split into seperate sentences in the csv file.
in win98 though it seems to try and fit everything into one sentence!!
whats the solution round this then??