Thanks for the quick response.
The first question, I needed to replace the quotation char " with nothing. I guess the principal is the same though. Can I just use \" ??
PHP Code:
$text = str_replace("\"", '', $text);
EDIT: Yes it is.
-----------------
Secondly, just so I understand correctly... (always a bonus in my case

)... fgets() reads one line up to endline?? (nix or win or both??)
Thanks.